Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for staticLibrary (0.32 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftLibraryPlugin.java

                    apiElements.getAttributes().attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, staticLibrary.getTargetMachine().getOperatingSystemFamily());
                    apiElements.getOutgoing().artifact(staticLibrary.getModuleFile());
                });
    
                library.getBinaries().realizeNow();
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                ":log:compileDebugSwift", ":log:createDebug",
                ":app:compileDebugSwift", ":app:linkDebug", ":app:installDebug", ":app:assemble")
    
            staticLibrary("hello/build/lib/main/debug/Hello").assertExists()
            staticLibrary("log/build/lib/main/debug/Log").assertExists()
            executable("app/build/exe/main/debug/App").assertExists()
            def installationDebug = installation("app/build/install/main/debug")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            sharedLibrary("lib1/build/lib/main/debug/lib1").assertExists()
            staticLibrary("lib2/build/lib/main/debug/lib2").assertExists()
            staticLibrary("lib3/build/lib/main/debug/lib3").assertExists()
    
            succeeds tasks(':lib1').release.assemble
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            then:
            failure.assertHasDescription("Execution failed for task ':createMainStaticLibrary'.");
            failure.assertHasCause("A build operation failed.")
            def libName = staticLibrary("build/binaries/mainSharedLibrary/main").file.name
            failure.assertThatCause(containsText("Static library archiver failed while archiving ${libName}"))
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            and:
            !oldObjFile.file
            newObjFile.file
    
            and:
            try {
                assert staticLibrary("build/libs/hello/static/hello").listObjectFiles().contains(newObjFile.name)
                assert !staticLibrary("build/libs/hello/static/hello").listObjectFiles().contains(oldObjFile.name)
            } catch (UnsupportedOperationException ignored) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithBothLinkagePublishingIntegrationTest.groovy

            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)
    
            debugStatic.parsedPom.scopes.isEmpty()
    
            def debugStaticMetadata = debugStatic.parsedModuleMetadata
            debugStaticMetadata.variants.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

                int main () {
                  hello("Hello!");
                  return 0;
                }
            """
    
            when:
            run "installMainExecutable"
    
            then:
            staticLibrary("build/libs/hello/static/hello").assertExists()
            installation("build/install/main").exec().out == "Hello!"
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            staticLibrary("deck/build/lib/main/debug/deck").assertExists()
            staticLibrary("card/build/lib/main/debug/card").assertExists()
            staticLibrary("shuffle/build/lib/main/debug/shuffle").assertExists()
            executable("app/build/exe/main/debug/app").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            libProject.projectConfigurations.values().each {
                assert it.includePath == filePath("src/hello/headers")
                assert it.buildCommand.endsWith("gradle\" -p \"..\" :lib:hello${it.name.capitalize()}StaticLibrary")
            }
    
            and:
            final mainSolution = solutionFile("app.sln")
            mainSolution.assertHasProjects("exe_mainExe", "lib_helloDll", "lib_helloLib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

            }
    
            and:
            StaticLibraryBinarySpec staticLibraryBinary = binaries.testStaticLibrary as StaticLibraryBinarySpec
            with(staticLibraryBinary) {
                name == 'staticLibrary'
                component == library
    
                toolChain.name == "tc"
                targetPlatform.name == "platform"
                buildType.name == "bt"
                flavor.name == "flavor1"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top