Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 429 for linkage (0.22 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestWithStaticLibraryLinkageIntegrationTest.groovy

        }
    
        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'xctest'
                apply plugin: 'swift-library'
                library.linkage = [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)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerCppBuildExportIntegrationTest.groovy

        def "produces manifest for C++ library with shared and static linkage"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'cpp-library'
                }
                library.linkage = [Linkage.SHARED, Linkage.STATIC]
    """
            def lib = new CppLib()
            lib.sources.writeToProject(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithSharedLibraryLinkageIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'cpp-library'
                apply plugin: 'cpp-unit-test'
                library.linkage = [Linkage.SHARED]
            """
        }
    
        @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.6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/ConfigurableComponentWithLinkUsage.java

    import org.gradle.nativeplatform.Linkage;
    
    import javax.annotation.Nullable;
    
    /**
     * A configurable view of a component that has a link usage. This should become public in some form.
     */
    public interface ConfigurableComponentWithLinkUsage extends ComponentWithLinkUsage, ComponentWithNames {
        Configuration getImplementationDependencies();
    
        @Nullable
        Linkage getLinkage();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftStaticLibraryLinkageProjectIntegrationTest.groovy

        @Override
        void makeSingleProject() {
            buildFile << """
                apply plugin: 'swift-library'
                library.linkage = [Linkage.STATIC]
            """
        }
    
        @Override
        String getComponentUnderTestDsl() {
            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.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryWithStaticLinkagePublishingIntegrationTest.groovy

                apply plugin: 'maven-publish'
    
                group = 'some.group'
                version = '1.2'
                library {
                    baseName = 'test'
                    linkage = [Linkage.STATIC]
                }
                publishing {
                    repositories { maven { url 'repo' } }
                }
    """
            lib.writeToProject(testDirectory)
    
            when:
            run('publish')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

            helloStatic(NativeLibrarySpec)
            helloShared(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'helloStatic', linkage: 'static'
                    cpp.lib library: 'helloShared', linkage: 'shared'
                }
            }
        }
    }
    """
    
            and:
            file("src/helloStatic/cpp/hellostatic.cpp") << """
                #include <iostream>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

        }
    
        StaticLibraryFixture staticCppLibrary(Object path) {
            return cppToolChain.staticLibrary(file(path))
        }
    
        String createOrLink(String linkage) {
            if (linkage == "STATIC") {
                return "create"
            }
    
            if (linkage == "SHARED") {
                return "link"
            }
    
            throw new IllegalArgumentException()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithStaticLibraryLinkageIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            buildFile << """
                apply plugin: 'xctest'
                apply plugin: 'swift-library'
                library.linkage = [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.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.dot

      }
    
      subgraph cluster_cppLibrary {
        label = "C++ Library Plugin"
        cppLibrary_mainVisualStudio[label="mainVisualStudio"]
    
        subgraph cluster_cppLibrarySharedLinkage {
          label = "Shared Linkage"
          style = dashed
    
          nameDllVisualStudioProject[label=<<i>projectName</i>DllVisualStudioProject>]
          nameDllVisualStudioFilters[label=<<i>projectName</i>DllVisualStudioFilters>]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top