Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for staticLibrary (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            debugStaticBinary.compilationDetails.compileTask.path == ":compileDebugStaticCpp"
            debugStaticBinary.linkageDetails.outputLocation == toolchain.staticLibrary(file("build/lib/main/debug/static/some-lib")).file
            debugStaticBinary.linkageDetails.additionalArgs.empty
            debugStaticBinary.linkageDetails.linkTask.path == ":createDebugStatic"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            sample cppLib
            run "mainStaticLibrary"
    
            then:
            executedAndNotSkipped ":compileMainStaticLibraryMainCpp", ":createMainStaticLibrary", ":mainStaticLibrary"
    
            and:
            staticLibrary(cppLib.dir.file("build/libs/main/static/main")).assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def flavors() {
            given:
            sample flavors
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            and:
            executedAndNotSkipped ":greetingsSharedLibrary", ":greetingsStaticLibrary"
            sharedLibrary("build/libs/greetings/shared/greetings").assertExists()
            staticLibrary("build/libs/greetings/static/greetings").assertExists()
    
            and:
            try {
                println executable("build/exe/main/main").binaryInfo.listLinkedLibraries()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        def "can build library from visual studio"() {
            useMsbuildTool()
            def debugBinaryLib = staticLibrary("build/lib/main/debug/static/lib")
            def debugBinaryDll = sharedLibrary("build/lib/main/debug/shared/lib")
    
            given:
            app.library.writeSources(file("src/main"))
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top