Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for staticLibrary (0.45 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

        }
    
        SharedLibraryFixture cppLibrary(Object path) {
            return cppToolChain.sharedLibrary(file(path))
        }
    
        StaticLibraryFixture staticCppLibrary(Object path) {
            return cppToolChain.staticLibrary(file(path))
        }
    
        String createOrLink(String linkage) {
            if (linkage == "STATIC") {
                return "create"
            }
    
            if (linkage == "SHARED") {
                return "link"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

                createNativeBinary(StaticLibraryBinarySpec.class, binaries, resolver, fileCollectionFactory, namingScheme.withBinaryType("StaticLibrary").withRole("static", false), platform, buildType, flavor);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIntegrationTest.groovy

            helloWorldApp.executable.writeSources(file("src/main"))
            helloWorldApp.library.writeSources(file("src/hello"))
    
            when:
            run "installMainExecutable"
    
            then:
            staticLibrary("build/libs/hello/static/hello").assertExists()
            executable("build/exe/main/main").assertExists()
    
            and:
            def install = installation("build/install/main")
            install.assertInstalled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

                    helloStatic();
                    helloShared();
                    return 0;
                }
            """
    
            when:
            succeeds "installMainExecutable"
    
            then:
            staticLibrary("build/libs/helloStatic/static/helloStatic").assertExistsAndDelete()
            sharedLibrary("build/libs/helloShared/shared/helloShared").assertExistsAndDelete()
            installation("build/install/main")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            return staticLibrary("${module}/build/lib/main/${variantContext.asPath}${module}").file
        }
    
        @Override
        Map<String, String> getVariantFileInformation(String linkage, String module, String variantModuleNameWithVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            static library file: build/libs/someLib/static/libsomeLib.a
            source sets:
                C++ source 'someLib:staticLibrary:moreCpp'
                    srcDir: src/staticLibrary/moreCpp
    """
        }
    
        @RequiresInstalledToolChain
        @ToBeFixedForConfigurationCache(because = ":components")
        def "shows details of native C++ library that is not buildable"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXTarget.java

                s.addField("buildConfigurationList", buildConfigurationList);
            }
        }
    
        public enum ProductType {
            INDEXER("org.gradle.product-type.indexer"),
    
            STATIC_LIBRARY("com.apple.product-type.library.static"),
            DYNAMIC_LIBRARY("com.apple.product-type.library.dynamic"),
            TOOL("com.apple.product-type.tool"),
            BUNDLE("com.apple.product-type.bundle"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodeTarget.java

            } else if (PBXTarget.ProductType.DYNAMIC_LIBRARY.equals(productType)) {
                return FileTypes.MACH_O_DYNAMIC_LIBRARY.identifier;
            } else if (PBXTarget.ProductType.STATIC_LIBRARY.equals(productType)) {
                return FileTypes.ARCHIVE_LIBRARY.identifier;
            } else {
                return "compiled";
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top