Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for installDirectory (0.42 sec)

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

            executable.executableFileProducer >> exeFileTaskProp
            executable.debuggerExecutableFile >> debugExeFileProp
            executable.linkTask >> linkTaskProp
            executable.installDirectory >> installDirProp
            executable.installTask >> installTaskProp
    
            given:
            project.pluginManager.apply(NativeBasePlugin)
            project.components.add(executable)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

            link.debuggable
    
            def install = project.tasks.installTest
            install instanceof InstallExecutable
            install.installDirectory.get().asFile == project.file("build/install/test")
            install.runScriptFile.get().asFile.name == OperatingSystem.current().getScriptName("someAppTest")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.test.xctest.tasks.InstallXCTestBundle.xml

                </thead>
                <tr>
                    <td>runScriptFile</td>
                </tr>
                <tr>
                    <td>bundleBinaryFile</td>
                </tr>
                <tr>
                    <td>installDirectory</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

            def install = project.tasks[installTask]
            install instanceof InstallExecutable
            install.installDirectory.get().asFile == projectDir.file("build/install/$exeDir")
    
            where:
            name        | linkTask        | installTask        | exeDir
            "main"      | "link"          | "install"          | "main/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

            def install = project.tasks[installTask]
            install instanceof InstallExecutable
            install.installDirectory.get().asFile == projectDir.file("build/install/$exeDir")
    
            where:
            name        | linkTask        | installTask        | exeDir
            "main"      | "link"          | "install"          | "main/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            when:
            buildFile << """
                application {
                    binaries.configureEach { binary ->
                        binary.installTask.get().installDirectory = project.layout.buildDirectory.dir("foo/\${binary.name}")
                    }
                }
            """
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            executable("build/exe/main/debug/app").assertDoesNotExist()
            objectFiles(app.main)*.assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "can use installDirectory as task dependency"() {
            settingsFile << "rootProject.name = 'app'"
            def app = new CppApp()
    
            given:
            app.writeToProject(testDirectory)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            result.assertTasksExecuted(":compileDebugSwift", ':compileDebug')
            executable("build/exe/main/debug/App").assertDoesNotExist()
            objectFiles(app.main)*.assertExists()
        }
    
        def "can use installDirectory as task dependency"() {
            given:
            def app = new SwiftApp()
            settingsFile << "rootProject.name = '${app.projectName}'"
            app.writeToProject(testDirectory)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (1)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                    task.getInputs()
                        .dir(binary.getInstallDirectory())
                        .withPropertyName("installDirectory");
                    task.setExecutable(installTask.getRunScriptFile().get().getAsFile());
                    task.dependsOn(binary.getInstallDirectory());
                    // TODO: Honor changes to build directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

                task install(type: InstallExecutable) {
                    targetPlatform.set(binary.map { it.compileTask.get().targetPlatform.get() })
                    toolChain.set(binary.map { it.toolChain })
                    installDirectory = layout.projectDirectory.dir("install")
                    lib(configurations.install.filter { it != configurations.install.files[0] })
                    executableFile = layout.file(provider {
    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