Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sharedLibrary (0.17 sec)

  1. 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)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            debugX86Binary.compilationDetails.compileTask.path == ":compileDebugX86Cpp"
            debugX86Binary.compilationDetails.compileTask.name == "compileDebugX86Cpp"
            debugX86Binary.linkageDetails.outputLocation == toolchain.sharedLibrary(file("build/lib/main/debug/x86/lib")).linkFile
            debugX86Binary.linkageDetails.additionalArgs.empty
            debugX86Binary.linkageDetails.linkTask.path == ":linkDebugX86"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            debugBinary.compilationDetails.compileTask.path == ":compileDebugCpp"
            debugBinary.compilationDetails.compileTask.name == "compileDebugCpp"
            debugBinary.linkageDetails.outputLocation == toolchain.sharedLibrary(file("build/lib/main/debug/lib")).linkFile
            debugBinary.linkageDetails.additionalArgs.empty
            debugBinary.linkageDetails.linkTask.path == ":linkDebug"
            debugBinary.linkageDetails.linkTask.name == "linkDebug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

            SharedLibraryBinarySpec sharedLibraryBinary = binaries.testSharedLibrary as SharedLibraryBinarySpec
            with(sharedLibraryBinary) {
                name == 'sharedLibrary'
                component == library
    
                toolChain.name == "tc"
                targetPlatform.name == "platform"
                buildType.name == "bt"
                flavor.name == "flavor1"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top