Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for staticLib (0.14 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def staticLib = Stub(ConfigurableComponentWithStaticLibrary)
            staticLib.name >> "windowsDebug"
            staticLib.names >> Names.of("windowsDebug")
            staticLib.nativePlatform >> Stub(NativePlatformInternal)
            staticLib.toolChain >> Stub(NativeToolChainInternal)
            staticLib.platformToolProvider >> toolProvider
            staticLib.baseName >> Providers.of("test_lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/plugins/AssemblerPluginTest.groovy

            and:
            StaticLibraryBinarySpec staticLib = realizeBinaries().testStaticLibrary
            staticLib.tasks.withType(Assemble)*.name == ["assembleTestStaticLibraryTestAnotherOne", "assembleTestStaticLibraryTestAsm"]
            staticLib.tasks.withType(Assemble).each { compile ->
                compile.toolChain == sharedLib.toolChain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

            file(OperatingSystem.current().getExecutableName(str))
        }
    
        protected TestFile sharedLib(String str) {
            file(OperatingSystem.current().getSharedLibraryName(str))
        }
    
        protected TestFile staticLib(String str) {
            file(OperatingSystem.current().getStaticLibraryName(str))
        }
    
        protected TestFile xctest(String str) {
            file(str + ".xctest")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can build Swift static library from xcode"() {
            useXcodebuildTool()
            def lib = new SwiftLib()
            def debugBinary = staticLib("build/lib/main/debug/App")
            def releaseBinary = staticLib("build/lib/main/release/App")
    
            given:
            buildFile << """
                apply plugin: 'swift-library'
                library.linkage = [Linkage.STATIC]
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
Back to top