Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for staticLibraryName (0.53 sec)

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

            debugMetadata.variants.size() == 2
            def debugLink = debugMetadata.variant('debugLink')
            debugLink.dependencies.empty
            debugLink.files.size() == 1
            debugLink.files[0].name == staticLibraryName('test')
            debugLink.files[0].url == withStaticLibrarySuffix("test_debug-1.2")
            def debugRuntime = debugMetadata.variant('debugRuntime')
            debugRuntime.dependencies.empty
    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/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioCppStaticLibraryLinkageProjectIntegrationTest.groovy

    class VisualStudioCppStaticLibraryLinkageProjectIntegrationTest extends AbstractVisualStudioProjectIntegrationTest {
        @Override
        String getBuildFile(VariantContext variantContext) {
            return staticLibraryName("build/lib/main/${variantContext.asPath}${rootProjectName}")
        }
    
        @Override
        void makeSingleProject() {
            buildFile << """
                apply plugin: "cpp-library"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AbstractInstalledToolChainIntegrationSpec.groovy

        }
    
        String getLinkLibrarySuffix() {
            return toolChain.visualCpp ? OperatingSystem.current().linkLibrarySuffix.substring(1) : OperatingSystem.current().sharedLibrarySuffix.substring(1)
        }
    
        String staticLibraryName(Object path) {
            return OperatingSystem.current().getStaticLibraryName(path.toString())
        }
    
        String withStaticLibrarySuffix(Object path) {
            return path + OperatingSystem.current().staticLibrarySuffix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

        }
    
        @Override
        Map<String, String> getVariantFileInformation(String linkage, String module, String variantModuleNameWithVersion) {
            return [name: staticLibraryName(module), url: withStaticLibrarySuffix(variantModuleNameWithVersion), extension: staticLibraryExtension]
        }
    
        @Override
        boolean publishesArtifactForLinkage(String linkage) {
            return linkage == 'Link'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top