Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for executableFile (0.13 sec)

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

            and:
            buildFile << """
                apply plugin: 'swift-application'
    
                task buildDebug {
                    dependsOn application.binaries.get { it.debuggable && !it.optimized }.map { it.executableFile }
                }
             """
    
            expect:
            succeeds "buildDebug"
            result.assertTasksExecuted(":compileDebugSwift", ":linkDebug", ':buildDebug')
    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/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            and:
            buildFile << """
                apply plugin: 'cpp-application'
    
                task buildDebug {
                    dependsOn application.binaries.get { !it.optimized }.map { it.executableFile }
                }
             """
    
            expect:
            succeeds "buildDebug"
            result.assertTasksExecuted(tasks.debug.allToLink, ':buildDebug')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The deprecated `InstallExecutable.setExecutable(Provider)` was removed — use link:{groovyDslPath}/org.gradle.nativeplatform.tasks.InstallExecutable.html#org.gradle.nativeplatform.tasks.InstallExecutable:executableFile[InstallExecutable.executableFile] instead.
     * Gradle will no longer prefer a version of Visual Studio found on the path over other locations. It is now a last resort.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top