Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for installDebug (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    ::
    Links executable from compiled object files using the selected linker.
    
    `install__Variant__` (e.g. `installDebug` and `installRelease`) - link:{groovyDslPath}/org.gradle.nativeplatform.tasks.InstallExecutable.html[InstallExecutable]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

            where:
            name        | linkTask        | installTask        | exeDir
            "main"      | "link"          | "install"          | "main/"
            "mainDebug" | "linkDebug"     | "installDebug"     | "main/debug/"
            "test"      | "linkTest"      | "installTest"      | "test/"
            "testDebug" | "linkTestDebug" | "installTestDebug" | "test/debug/"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    ::
    Links executable from compiled object files using the selected linker.
    
    `install__Variant__` (e.g. `installDebug` and `installRelease`) - link:{groovyDslPath}/org.gradle.nativeplatform.tasks.InstallExecutable.html[InstallExecutable]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

            where:
            name        | linkTask        | installTask        | exeDir
            "main"      | "link"          | "install"          | "main/"
            "mainDebug" | "linkDebug"     | "installDebug"     | "main/debug/"
            "test"      | "linkTest"      | "installTest"      | "test/"
            "testDebug" | "linkTestDebug" | "installTestDebug" | "test/debug/"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.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
    - 10.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            then:
            project.tasks['assemble'] TaskDependencyMatchers.dependsOn('debugInstall')
        }
    
        def "adds assemble task for each binary of main component"() {
            def binary1 = binary('debug', 'installDebug')
            def binary2 = binary('release', 'installRelease')
            def binaries = new DefaultBinaryCollection(SoftwareComponent)
            binaries.add(binary1)
            binaries.add(binary2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

                .withScheme('App')
                .succeeds()
    
            then:
            resultDebug.assertTasksExecuted(':compileDebugCpp', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
            resultDebug.assertTasksNotSkipped(':compileDebugCpp', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
            debugBinary.exec().out == app.expectedOutput
            fixture(debugBinary).assertHasDebugSymbolsFor(app.sourceFileNamesWithoutHeaders)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

                .withScheme('App')
                .succeeds()
    
            then:
            resultDebug.assertTasksExecuted(':compileDebugSwift', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
            resultDebug.assertTasksNotSkipped(':compileDebugSwift', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
            debugBinary.exec().out == app.expectedOutput
            fixture(debugBinary).assertHasDebugSymbolsFor(app.sourceFileNames)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            ["${projectPath}:compileDebugSwift", "${projectPath}:linkDebug"]
        }
    
        private List<String> getAssembleAppTasks(String projectPath = "") {
            getCompileAndLinkTasks(projectPath) + ["${projectPath}:installDebug", "${projectPath}:assemble"]
        }
    
        private List<String> getAssembleLibTasks(String projectPath = "") {
            getCompileAndLinkTasks(projectPath) + ["${projectPath}:assemble"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                .withScheme('App')
                .succeeds()
    
            then:
            resultDebugApp.assertTasksExecuted(':greeter:compileDebugSwift', ':greeter:linkDebug', ':compileDebugSwift', ':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
    - 23.3K bytes
    - Viewed (0)
Back to top