Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for installDebug (0.36 sec)

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

            linkDebug.debuggable
    
            def installDebug = project.tasks.installDebug
            installDebug instanceof InstallExecutable
            installDebug.installDirectory.get().asFile == projectDir.file("build/install/main/debug")
            installDebug.runScriptFile.get().getAsFile().name == OperatingSystem.current().getScriptName("TestApp")
    
    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/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            linkDebug.debuggable
    
            def installDebug = project.tasks.installDebug
            installDebug instanceof InstallExecutable
            installDebug.installDirectory.get().asFile == projectDir.file("build/install/main/debug")
            installDebug.runScriptFile.get().getAsFile().name == OperatingSystem.current().getScriptName("testApp")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/native-application-build.out.template

    > Task :${subprojectName.raw}:compileDebug${language.raw}
    > Task :${subprojectName.raw}:relocateMainForTest
    > Task :${subprojectName.raw}:linkDebug
    > Task :${subprojectName.raw}:installDebug
    > Task :${subprojectName.raw}:assemble
    > Task :${subprojectName.raw}:compileTest${language.raw}
    > Task :${subprojectName.raw}:linkTest
    > Task :${subprojectName.raw}:installTest
    > Task :${subprojectName.raw}:${nativeTestTaskPrefix.raw}Test
    > Task :${subprojectName.raw}:test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 592 bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebug${variant.capitalize()}Swift", ":linkDebug${variant.capitalize()}", ":installDebug${variant.capitalize()}"]
        }
    
        @Override
        protected SwiftApp getComponentUnderTest() {
            return new SwiftApp()
        }
    
        @Override
        protected void makeSingleProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestWithApplicationIntegrationTest.groovy

    class SwiftXCTestWithApplicationIntegrationTest extends AbstractSwiftXCTestWithComponentIntegrationTest {
        @Override
        protected String[] getTasksToAssembleComponentUnderTest() {
            return [":linkDebug", ":installDebug"]
        }
    
        @Override
        protected String[] getTasksToCompileComponentUnderTest() {
            return [":compileDebugSwift", ":relocateMainForTest"]
        }
    
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationDependenciesIntegrationTest.groovy

        protected String getComponentUnderTestDsl() {
            return "application"
        }
    
        @Override
        protected List<String> getAssembleDebugTasks() {
            return [":compileDebugSwift", ":linkDebug", ":installDebug"]
        }
    
        @Override
        protected List<String> getAssembleReleaseTasks() {
            return [":compileReleaseSwift", ":linkRelease", ":stripSymbolsRelease", ":extractSymbolsRelease", ":installRelease"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppBinariesRelocationIntegrationTest.groovy

        def "can execute application with dependencies when relocated"() {
            def installDir = file("build/install/main/debug")
            def relocatedInstallDir = file("relocated-install")
    
            when:
            succeeds("installDebug")
    
            then:
            def install = installation(installDir)
            install.assertInstalled()
            install.exec()
    
            when:
            installDir.copyTo(relocatedInstallDir)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    The `build` task compiles the ${language.raw} sources, links the object files, and runs the tests.
    It also packages the main and test applications for distribution on other systems.
    The `installDebug` and `installTest` tasks, which both run as part of `build`, copy the executable and generates a shell script for executing the application.
    The following shows the content of the `build/install` folder:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

                    }
                }
            """
            app.main.writeToProject(consumer)
    
            when:
            executer.inDirectory(consumer)
            run("installDebug")
    
            then:
            def debugInstall = installation(consumer.file("build/install/main/debug"))
            debugInstall.exec().out == app.withFeatureDisabled().expectedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

                .withScheme('App')
                .succeeds()
    
            then:
            resultDebugApp.assertTasksExecuted(':greeter:compileDebugCpp', ':greeter:linkDebug',
                ':compileDebugCpp', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
    
            when:
            def resultReleaseGreeter = xcodebuild
                .withWorkspace(rootXcodeWorkspace)
                .withScheme('Greeter')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top