Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getLibDebugTasks (1.05 sec)

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

        }
    
        @Override
        protected List<String> getAssembleReleaseTasks() {
            return tasks.release.allToAssemble - tasks.release.assemble
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [':lib:compileDebugCpp', ':lib:linkDebug']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestDependenciesIntegrationTest.groovy

            return ":installTest"
        }
    
        @Override
        protected List<String> getAssembleDevBinaryTasks() {
            return [":compileTestCpp", ":linkTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [":lib:compileDebugCpp", ":lib:linkDebug"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestWithApplicationDependenciesIntegrationTest.groovy

        }
    
        @Override
        protected List<String> getRunTestTasks() {
            return [tasks.debug.compile, tasks.test.relocate, tasks.test.allToInstall, ":xcTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [tasks(":lib").debug.allToLink]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeUnitTestComponentDependenciesIntegrationTest.groovy

        }
    
        protected abstract void makeTestSuiteAndComponentWithLibrary()
    
        protected abstract String getProductionComponentDsl()
    
        protected abstract List<String> getLibDebugTasks()
    
        protected abstract List<String> getRunTestTasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationDependenciesIntegrationTest.groovy

            return [":compileReleaseSwift", ":linkRelease", ":stripSymbolsRelease", ":extractSymbolsRelease", ":installRelease"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [":lib:compileDebugSwift", ":lib:linkDebug"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeDependenciesIntegrationTest.groovy

        protected abstract String getComponentUnderTestDsl()
    
        protected abstract String getAssembleDevBinaryTask()
    
        protected abstract List<String> getAssembleDevBinaryTasks()
    
        protected abstract List<String> getLibDebugTasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestDependenciesIntegrationTest.groovy

            return tasks.test.install
        }
    
        @Override
        protected List<String> getAssembleDevBinaryTasks() {
            return tasks.test.allToLink
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return tasks(':lib').debug.allToLink
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithLibraryDependenciesIntegrationTest.groovy

        @Override
        protected List<String> getRunTestTasks() {
            return [":compileDebugCpp", ":compileTestCpp", ":linkTest", ":installTest", ":runTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [":lib:compileDebugCpp", ":lib:linkDebug"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationDependenciesIntegrationTest.groovy

        }
    
        @Override
        protected List<String> getAssembleReleaseTasks() {
            return tasks.release.allToAssembleWithInstall - tasks.release.assemble
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [':lib:compileDebugCpp', ':lib:linkDebug']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryDependenciesIntegrationTest.groovy

        protected List<String> getAssembleReleaseTasks() {
            return [":compileReleaseSwift", ":linkRelease", ":stripSymbolsRelease", ":extractSymbolsRelease"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [":lib:compileDebugSwift", ":lib:linkDebug"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top