Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getTasksToAssembleDevelopmentBinary (0.38 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

        @Override
        protected String getComponentUnderTestDsl() {
            return "library"
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebug${variant.capitalize()}Cpp", ":linkDebug${variant.capitalize()}"]
        }
    
        @Override
        protected String getDevelopmentBinaryCompileTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

    @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC)
    class SwiftApplicationIntegrationTest extends AbstractSwiftIntegrationTest implements SwiftTaskNames {
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebug${variant.capitalize()}Swift", ":linkDebug${variant.capitalize()}", ":installDebug${variant.capitalize()}"]
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            """
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "application"
        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebug${variant.capitalize()}Cpp", ":linkDebug${variant.capitalize()}", ":installDebug${variant.capitalize()}"]
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top