Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for developmentBinary (0.23 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            binaries.findAll { it.debuggable && !it.optimized && it instanceof CppSharedLibrary }.size() == 1
    
            and:
            project.library.developmentBinary.get() == binaries.find { it.debuggable && !it.optimized && it instanceof CppSharedLibrary }
        }
    
        def "registers a component for the library with static linkage"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

            binaries.findAll { it.debuggable && !it.optimized && it instanceof SwiftSharedLibrary }.size() == 1
    
            and:
            project.library.developmentBinary.get() == binaries.find { it.debuggable && !it.optimized && it instanceof SwiftSharedLibrary }
        }
    
        def "registers a component for the library with static linkage"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            binaries.add(binary1)
            binaries.add(binary2)
            def component = Stub(TestComponent)
            component.binaries >> binaries
            component.developmentBinary >> Providers.of(binary1)
    
            given:
            project.pluginManager.apply(NativeBasePlugin)
    
            when:
            project.components.add(component)
            binaries.realizeNow()
    
    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/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                    }
                }
                // HACK to install the executable from a repository
                def binary = application.developmentBinary
                task install(type: InstallExecutable) {
                    targetPlatform.set(binary.map { it.compileTask.get().targetPlatform.get() })
                    toolChain.set(binary.map { it.toolChain })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top