Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for SharedLibrary (0.16 sec)

  1. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            debugBinary.compilationDetails.compileTask.path == ":compileDebugCpp"
            debugBinary.compilationDetails.compileTask.name == "compileDebugCpp"
            debugBinary.linkageDetails.outputLocation == toolchain.sharedLibrary(file("build/lib/main/debug/lib")).linkFile
            debugBinary.linkageDetails.additionalArgs.empty
            debugBinary.linkageDetails.linkTask.path == ":linkDebug"
            debugBinary.linkageDetails.linkTask.name == "linkDebug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            Flavor flavor
        ) {
            if (component instanceof NativeLibrarySpec) {
                createNativeBinary(SharedLibraryBinarySpec.class, binaries, resolver, fileCollectionFactory, namingScheme.withBinaryType("SharedLibrary").withRole("shared", false), platform, buildType, flavor);
    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/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppLibraryInitIntegrationTest.groovy

            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        SharedLibraryFixture library(String path) {
            AvailableToolChains.defaultToolChain.sharedLibrary(targetDir.file(path))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftLibraryInitIntegrationTest.groovy

            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        SharedLibraryFixture library(String path) {
            AvailableToolChains.getToolChain(ToolChainRequirement.SWIFTC).sharedLibrary(targetDir.file(path))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

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

            SharedLibraryBinarySpec sharedLibraryBinary = binaries.testSharedLibrary as SharedLibraryBinarySpec
            with(sharedLibraryBinary) {
                name == 'sharedLibrary'
                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)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            then:
            def modPath = { TestFile file -> new TestFile("${file.parentFile}/new_output/_${file.name}") }
            modPath(executable("build/exe/main/main").file).assertExists()
            modPath(sharedLibrary("build/libs/hello/shared/hello").file).assertExists()
            modPath(staticLibrary("build/libs/hello/static/hello").file).assertExists()
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/368")
    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/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

        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 << """
                rootProject.name = 'lib'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

        def "can build library from visual studio"() {
            useMsbuildTool()
            def debugBinaryLib = staticLibrary("build/libs/main/static/win32/debug/main")
            def debugBinaryDll = sharedLibrary("build/libs/main/shared/win32/debug/main")
    
            given:
            app.library.writeSources(file("src/main"))
            buildFile << """
    model {
        components {
            main(NativeLibrarySpec)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
    
            public TestFile objectFile(Object path) {
                return new TestFile(path.toString() + objectFileNameSuffix);
            }
    
            public SharedLibraryFixture sharedLibrary(Object path) {
                return new SharedLibraryFixture(new TestFile(OperatingSystem.current().getSharedLibraryName(path.toString())), this);
            }
    
            public StaticLibraryFixture staticLibrary(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top