Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 247 for linkage (0.31 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftExecutable.java

    import org.gradle.language.nativeplatform.internal.Names;
    import org.gradle.language.swift.SwiftExecutable;
    import org.gradle.language.swift.SwiftPlatform;
    import org.gradle.nativeplatform.Linkage;
    import org.gradle.nativeplatform.tasks.InstallExecutable;
    import org.gradle.nativeplatform.tasks.LinkExecutable;
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. .idea/runConfigurations/Test__Partial_Linkage_Native___cache_dist.xml

    <component name="ProjectRunConfigurationManager">
      <configuration default="false" name="Test: Partial Linkage Native / cache dist" type="GradleRunConfiguration" factoryName="Gradle" folderName="Tests">
        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 29 15:41:06 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

    apply plugin: 'cpp'
    model {
        buildTypes {
            debug
            release
        }
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: "hello", linkage: "static"
                }
            }
            hello(NativeLibrarySpec)
        }
        binaries {
            all {
                if (buildType == buildTypes.debug) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppExecutable.java

    import org.gradle.language.nativeplatform.internal.ConfigurableComponentWithRuntimeUsage;
    import org.gradle.language.nativeplatform.internal.Names;
    import org.gradle.nativeplatform.Linkage;
    import org.gradle.nativeplatform.tasks.InstallExecutable;
    import org.gradle.nativeplatform.tasks.LinkExecutable;
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/build.gradle

            }
        }
    }
    // end::terse-example[]
    // tag::configure-test-binary[]
    model {
        binaries {
            withType(CUnitTestSuiteBinarySpec) {
                lib library: "cunit", linkage: "static"
    
                if (flavor == flavors.failing) {
                    cCompiler.define "PLUS_BROKEN"
                }
            }
        }
    }
    // end::configure-test-binary[]
    // end::complete-example[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         *
         * <ul>
         *     <li>project: the path to the project containing the library (optional, defaults to current project)</li>
         *     <li>library: the name of the library (required)</li>
         *     <li>linkage: the library linkage required ['shared'/'static'] (optional, defaults to 'shared')</li>
         * </ul>
         */
        void lib(Object library);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    | Adds a target for each specified linkage representing the shared and/or static library to the project file.
    
    | <<swift_application_plugin.adoc#swift_application_plugin,Swift Application>>
    | Adds a target representing the Swift application to the project file.
    
    | <<swift_library_plugin.adoc#swift_library_plugin,Swift Library>>
    | Adds a target for each specified linkage representing the shared and/or static library to the project file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/scopeids/BuildScanScopeIds.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Obtained from the Gradle object services.
     * Exists to remove linkage against types such as {@link BuildInvocationScopeId} and friends.
     */
    @ServiceScope(Scope.Build.class)
    public interface BuildScanScopeIds {
    
        String getBuildInvocationId();
    
        String getWorkspaceId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeLibraryRequirement.java

         */
        String getProjectPath();
    
        /**
         * The name of the required library.
         */
        String getLibraryName();
    
        /**
         * The required linkage.
         */
        String getLinkage();
    
        /**
         * Creates a copy of this requirement with the specified project path
         */
        NativeLibraryRequirement withProjectPath(String projectPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/build.gradle

                targetPlatform "x64"
            }
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                targetPlatform "x64"
                sources {
                    cpp.lib library: 'hello', linkage: 'static'
                }
            }
        }
    }
    // end::target-platforms[]
    
    // Apply arguments for debug binaries (these options are not yet set automatically)
    // tag::build-type-config[]
    model {
        binaries {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top