Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for developmentBinary (0.35 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/tasks/SwiftUnexportMainSymbolIntegrationTest.groovy

                apply plugin: "swift-application"
                task unexport(type: UnexportMainSymbol) {
                    outputDirectory = layout.buildDirectory.dir("relocated")
                    objects.from { components.main.developmentBinary.get().objects }
                }
            """
        }
    
        @Override
        protected String getDevelopmentBinaryCompileTask() {
            return ":compileDebugSwift"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

                apply plugin: "cpp-application"
                task unexport(type: UnexportMainSymbol) {
                    outputDirectory = layout.buildDirectory.dir("relocated")
                    objects.from { components.main.developmentBinary.get().objects }
                }
            """
        }
    
        @Override
        protected String getDevelopmentBinaryCompileTask() {
            return ":compileDebugCpp"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftApplicationPluginTest.groovy

            binaries.findAll { it.debuggable && !it.optimized && it instanceof SwiftExecutable }.size() == 1
    
            and:
            project.application.developmentBinary.get() == binaries.find { it.debuggable && !it.optimized && it instanceof SwiftExecutable }
        }
    
        def "adds compile, link and install tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            binaries.findAll { it.debuggable && !it.optimized && it instanceof CppExecutable }.size() == 1
    
            and:
            project.application.developmentBinary.get() == binaries.find { it.debuggable && !it.optimized && it instanceof CppExecutable }
        }
    
        def "adds compile, link and install tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. 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)
  6. 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