Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for compileTask (0.12 sec)

  1. 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 })
                    installDirectory = layout.projectDirectory.dir("install")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            val compileTasks = project.tasks.matching {
                it is JavaCompile || it is GroovyCompile
            }
            dependsOn(compileTasks)
        }
    
        tasks.register("compileAllProduction") {
            description = "Compile all production source code, usually only main and testFixtures."
            val compileTasks = project.tasks.matching {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top