Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for executableFile (0.49 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftApplicationPluginTest.groovy

            def install = project.tasks.installDebug
            install.installDirectory.get().asFile == project.file("output/install/main/debug")
            install.executableFile.get().asFile == link.linkedFile.get().asFile
    
            link.linkedFile.set(project.file("exe"))
            install.executableFile.get().asFile == link.linkedFile.get().asFile
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.tasks.InstallExecutable.xml

                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>installDirectory</td>
                </tr>
                <tr>
                    <td>executableFile</td>
                </tr>
                <tr>
                    <td>runScriptFile</td>
                </tr>
                <tr>
                    <td>libs</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            def install = project.tasks.installDebug
            install.installDirectory.get().asFile == project.file("output/install/main/debug")
            install.executableFile.get().asFile == link.linkedFile.get().asFile
    
            link.linkedFile.set(project.file("exe"))
            install.executableFile.get().asFile == project.file("exe")
        }
    
        def "adds publications when maven-publish plugin is applied"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

        private static final String BUILD_DEPENDENTS_TASK_NAME = "buildDependents";
    
        public static void createExecutableTask(final NativeBinarySpecInternal binary, final File executableFile) {
            String taskName = binary.getNamingScheme().getTaskName("link");
            binary.getTasks().create(taskName, LinkExecutable.class, new Action<LinkExecutable>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            executable.toolChain >> Stub(NativeToolChainInternal)
            executable.platformToolProvider >> toolProvider
            executable.baseName >> Providers.of("test_app")
            executable.executableFile >> exeFileProp
            executable.executableFileProducer >> exeFileTaskProp
            executable.debuggerExecutableFile >> debugExeFileProp
            executable.linkTask >> linkTaskProp
    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/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            def modPath = { File original -> new File(original.parent + "/new_output/_" + original.name) }
            main(NativeExecutableSpec) {
                binaries.all {
                    executable.file = modPath(executableFile)
                }
            }
            hello(NativeLibrarySpec) {
                binaries.withType(SharedLibraryBinarySpec) {
                    sharedLibraryFile = modPath(sharedLibraryFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                    installDirectory = layout.projectDirectory.dir("install")
                    lib(configurations.install.filter { it != configurations.install.files[0] })
                    executableFile = layout.file(provider {
                        def appFile = configurations.install.files[0]
                        appFile.executable = true
                        appFile
                    })
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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