Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for sharedLibrary (0.23 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            sharedLibrary("lib1/build/lib/main/release/lib1").assertExists()
            sharedLibrary("lib2/build/lib/main/release/lib2").assertExists()
            sharedLibrary("lib3/build/lib/main/release/lib3").assertExists()
    
            sharedLibrary("lib1/build/lib/main/release/lib1").strippedRuntimeFile.assertExists()
            sharedLibrary("lib2/build/lib/main/release/lib2").strippedRuntimeFile.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            sharedLibrary("hello/build/lib/main/release/Hello").assertExists()
            sharedLibrary("hello/build/lib/main/release/Hello").assertHasStrippedDebugSymbolsFor(['greeter.o'])
            sharedLibrary("log/build/lib/main/release/Log").assertExists()
            sharedLibrary("log/build/lib/main/release/Log").assertHasDebugSymbolsFor(['log.o'])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def sharedLibrary = Stub(ConfigurableComponentWithSharedLibrary)
            sharedLibrary.name >> "windowsDebug"
            sharedLibrary.names >> Names.of("windowsDebug")
            sharedLibrary.debuggable >> true
            sharedLibrary.optimized >> true
            sharedLibrary.nativePlatform >> Stub(NativePlatformInternal)
            sharedLibrary.toolChain >> Stub(NativeToolChainInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/SharedLibrarySoNameIntegrationTest.groovy

        def "library soname is file name when installName is not set"() {
            when:
            succeeds "helloSharedLibrary"
    
            then:
            final sharedLibrary = sharedLibrary("build/libs/hello/shared/hello")
            sharedLibrary.soName == sharedLibrary.file.name
        }
    
        @ToBeFixedForConfigurationCache
        def "library soname uses specified installName"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            sharedLibrary("hello/build/lib/main/debug/Hello").assertExists()
            sharedLibrary("log/build/lib/main/debug/Log").assertExists()
            executable("app/build/exe/main/debug/App").exec().out == app.expectedOutput
            sharedLibrary("app/build/install/main/debug/lib/Hello").file.assertExists()
            sharedLibrary("app/build/install/main/debug/lib/Log").file.assertExists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            sharedLibrary("deck/build/lib/main/debug/deck").assertExists()
            sharedLibrary("card/build/lib/main/debug/card").assertExists()
            sharedLibrary("shuffle/build/lib/main/debug/shuffle").assertExists()
            executable("app/build/exe/main/debug/app").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.groovy

            debugShared.artifactFile(type: sharedLibraryExtension).assertIsCopyOf(sharedLibrary("build/lib/main/debug/shared/test").file)
            debugShared.artifactFile(type: linkLibrarySuffix).assertIsCopyOf(sharedLibrary("build/lib/main/debug/shared/test").linkFile)
    
            debugShared.parsedPom.scopes.isEmpty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpecTest.groovy

        def sharedLibraryLinkFile = Mock(File)
    
        def "has useful string representation"() {
            expect:
            sharedLibrary.toString() == "shared library 'main:sharedLibrary'"
        }
    
        def "can set output files"() {
            given:
            def binary = sharedLibrary
    
            when:
            binary.sharedLibraryFile = sharedLibraryFile
            binary.sharedLibraryLinkFile = sharedLibraryLinkFile
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            executer.inDirectory(consumer)
            run("assemble")
    
            then:
            noExceptionThrown()
            sharedLibrary(consumer.file("build/install/main/debug/lib/deck")).file.assertExists()
            sharedLibrary(consumer.file("build/install/main/debug/lib/card")).file.assertExists()
            sharedLibrary(consumer.file("build/install/main/debug/lib/shuffle")).file.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftLibraryPlugin.java

                    apiElements.getAttributes().attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, sharedLibrary.getTargetMachine().getOperatingSystemFamily());
                    apiElements.getOutgoing().artifact(sharedLibrary.getModuleFile());
                });
    
                library.getBinaries().whenElementKnown(SwiftStaticLibrary.class, staticLibrary -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top