Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for getLibrary (0.15 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/TestApp.java

            headerFiles.addAll(getLibrary().getHeaderFiles());
            return headerFiles;
        }
    
        @Override
        public List<SourceFile> getSourceFiles() {
            ArrayList<SourceFile> sourceFiles = new ArrayList<SourceFile>();
            sourceFiles.addAll(getExecutable().getSourceFiles());
            sourceFiles.addAll(getLibrary().getSourceFiles());
            return sourceFiles;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithCppLibrary.groovy

        final greeter = new SwiftGreeterUsingCppFunction(logger, 'log')
    
        @Override
        SourceElement getLogLibrary() {
            return logger
        }
    
        @Override
        SourceElement getLibrary() {
            return greeter
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1004 bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/LibraryBinarySpec.java

     */
    @Incubating
    public interface LibraryBinarySpec extends BinarySpec {
        /**
         * The library that this binary belongs to.
         */
        LibrarySpec getLibrary();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 935 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyCppDepModuleMapApp.groovy

        IncrementalSwiftAppWithCppDep getApplication() {
            return main
        }
    
        String getExpectedOutput() {
            return main.expectedOutput
        }
    
        IncrementalCppGreeter getLibrary() {
            return lib
        }
    
        String getAlternateLibraryOutput() {
            return main.expectedAlternateOutput
        }
    
        class IncrementalCppGreeter extends IncrementalCppElement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftStaleLinkOutputAppWithLib.groovy

        IncrementalSwiftAppWithDep getApplication() {
            return main
        }
    
        String getExpectedOutput() {
            return main.expectedOutput
        }
    
        IncrementalSwiftLib getLibrary() {
            return lib
        }
    
        class IncrementalSwiftLib extends IncrementalSwiftElement {
            final greeter = new SwiftGreeter()
            final sum = new SwiftSum()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeLibraryBinarySpec.java

        /**
         * {@inheritDoc}
         */
        @Override
        NativeLibrarySpec getComponent();
    
        /**
         * {@inheritDoc}
         */
        @Override
        NativeLibrarySpec getLibrary();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibraries.groovy

        SourceElement getLogLibrary() {
            return logger
        }
    
        @Override
        String getExpectedOutput() {
            return main.expectedOutput
        }
    
        SourceElement getLibrary() {
            return greeter
        }
    
        SwiftSourceElement getApplication() {
            return new SwiftSourceElement('app') {
                @Override
                List<SourceFile> getFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyExpectedOutputAppWithLib.groovy

        IncrementalSwiftAppWithDep getApplication() {
            return main
        }
    
        String getExpectedOutput() {
            return main.expectedOutput
        }
    
        IncrementalSwiftLib getLibrary() {
            return lib
        }
    
        String getAlternateLibraryOutput() {
            return main.expectedAlternateOutput
        }
    
        class IncrementalSwiftLib extends IncrementalSwiftElement implements SumElement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyCppDepHeadersApp.groovy

        IncrementalSwiftAppWithCppDep getApplication() {
            return main
        }
    
        String getExpectedOutput() {
            return main.expectedOutput
        }
    
        IncrementalCppGreeter getLibrary() {
            return lib
        }
    
        String getAlternateLibraryOutput() {
            return main.expectedAlternateOutput
        }
    
        class IncrementalCppGreeter extends IncrementalCppElement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CommonHeaderHelloWorldApp.groovy

    
    abstract class CommonHeaderHelloWorldApp extends HelloWorldApp {
        abstract SourceFile getCommonHeader()
    
        abstract String getSourceSetType()
    
        @Override
        TestNativeComponent getLibrary() {
            return new TestNativeComponent() {
                @Override
                List<SourceFile> getSourceFiles() {
                    return getLibrarySources()
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top