Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 247 for linkage (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/visual_studio_plugin.adoc

    _Depends on_: `__projectName__DllVisualStudioProject` (for shared linkage), `__projectName__DllVisualStudioFilters` (for shared linkage), `__projectName__LibVisualStudioProject` (for static linkage) and `__projectName__LibVisualStudioFilters` (for static linkage)
    +
    Generates all Visual Studio project files for the library component.
    
    [[sec:visual_studio_configuration]]
    == Configuration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ApiRequirementNativeDependencyResolver.java

            for (NativeBinaryRequirementResolveResult resolution : nativeBinaryResolveResult.getAllResolutions()) {
                String linkage = getLinkage(resolution);
                if ("api".equals(linkage)) {
                    resolution.setRequirement(new ApiAdaptedNativeLibraryRequirement(resolution.getRequirement()));
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftBothLibraryLinkageWithXCTestProjectIntegrationTest.groovy

        @Override
        void makeSingleProject() {
            buildFile << """
                apply plugin: 'swift-library'
                apply plugin: 'xctest'
                library.linkage = [Linkage.STATIC, Linkage.SHARED]
            """
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    
        @Override
        protected SwiftSourceElement getComponentUnderTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithBothLibraryLinkageIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'xctest'
                apply plugin: 'swift-library'
                library.linkage = [Linkage.SHARED, Linkage.STATIC]
            """
        }
    
        @Override
        List<String> getTasksToAssembleDevelopmentBinaryOfComponentUnderTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestWithBothLibraryLinkageIntegrationTest.groovy

        }
    
        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'xctest'
                apply plugin: 'swift-library'
                library.linkage = [Linkage.SHARED, Linkage.STATIC]
            """
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "library"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithBothLibraryLinkageIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'cpp-library'
                apply plugin: 'cpp-unit-test'
                library.linkage = [Linkage.SHARED, Linkage.STATIC]
            """
        }
    
        @Override
        protected SourceElement getComponentUnderTest() {
            return new CppLibWithSimpleUnitTest()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftLibrary.java

        /**
         * Returns the API dependencies of this library.
         */
        Configuration getApiDependencies();
    
        /**
         * Returns the list of linkage of this library.
         *
         * @since 4.5
         */
        SetProperty<Linkage> getLinkage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginIntegrationTest.groovy

    class SwiftLibraryPluginIntegrationTest extends WellBehavedPluginTest {
        def "plugin can build with empty project with static lib"() {
            given:
            applyPlugin()
            buildFile << """
                library.linkage = [Linkage.STATIC]
            """
    
            expect:
            succeeds mainTask
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftSharedLibraryLinkageIntegrationTest.groovy

            return "library"
        }
    
        def "can create shared library binary when explicitly request a shared linkage"() {
            def library = new SwiftLib()
            buildFile << """
                apply plugin: 'swift-library'
    
                library {
                    linkage = [Linkage.SHARED]
                }
            """
            settingsFile << """
                rootProject.name = 'foo'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

                    }
                }
            }
        }
    
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'boost', linkage: 'api'
                    cpp.lib library: 'util', linkage: 'static'
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top