Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withStaticLibrarySuffix (0.37 sec)

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

            debugLink.files[0].url == withStaticLibrarySuffix("test_debug-1.2")
            def debugRuntime = debugMetadata.variant('debugRuntime')
            debugRuntime.dependencies.empty
            debugRuntime.files.empty
    
            def release = repo.module('some.group', 'test_release', '1.2')
            release.assertPublished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

        }
    
        @Override
        List<String> getVariantModuleArtifacts(String variantModuleNameWithVersion) {
            return [withStaticLibrarySuffix(variantModuleNameWithVersion), "${variantModuleNameWithVersion}.pom", "${variantModuleNameWithVersion}.module"]
        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.groovy

            def debugStatic = repo.module('some.group', 'test_debug_static', '1.2')
            debugStatic.assertPublished()
            debugStatic.assertArtifactsPublished(withStaticLibrarySuffix("test_debug_static-1.2"), "test_debug_static-1.2.pom", "test_debug_static-1.2.module")
            debugStatic.artifactFile(type: staticLibraryExtension).assertIsCopyOf(staticLibrary("build/lib/main/debug/static/test").file)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AbstractInstalledToolChainIntegrationSpec.groovy

        }
    
        String staticLibraryName(Object path) {
            return OperatingSystem.current().getStaticLibraryName(path.toString())
        }
    
        String withStaticLibrarySuffix(Object path) {
            return path + OperatingSystem.current().staticLibrarySuffix
        }
    
        String getStaticLibraryExtension() {
            return OperatingSystem.current().staticLibrarySuffix.substring(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top