Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for setTargetPlatform (0.28 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeBinarySpecInternal.java

    import java.util.Map;
    
    public interface NativeBinarySpecInternal extends NativeBinarySpec, BinarySpecInternal {
    
        void setFlavor(Flavor flavor);
    
        void setToolChain(NativeToolChain toolChain);
    
        void setTargetPlatform(NativePlatform targetPlatform);
    
        void setBuildType(BuildType buildType);
    
        Tool getToolByName(String name);
    
        PlatformToolProvider getPlatformToolProvider();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/BinaryToolSpec.java

    import org.gradle.nativeplatform.platform.NativePlatform;
    
    import java.io.File;
    import java.util.List;
    
    public interface BinaryToolSpec extends CompileSpec {
        NativePlatform getTargetPlatform();
    
        void setTargetPlatform(NativePlatform platform);
    
        File getTempDir();
    
        void setTempDir(File tempDir);
    
        List<String> getArgs();
    
        void args(List<String> args);
    
        List<String> getSystemArgs();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractBinaryToolSpec.java

        private NativePlatform platform;
        private BuildOperationLogger oplogger;
    
        @Override
        public NativePlatform getTargetPlatform() {
            return platform;
        }
    
        @Override
        public void setTargetPlatform(NativePlatform platform) {
            this.platform = platform;
        }
    
        @Override
        public File getTempDir() {
            return tempDir;
        }
    
        @Override
        public void setTempDir(File tempDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/DefaultNativeTestSuiteBinarySpec.java

            return testedBinary;
        }
    
        @Override
        public void setTestedBinary(NativeBinarySpecInternal testedBinary) {
            this.testedBinary = testedBinary;
            setTargetPlatform(testedBinary.getTargetPlatform());
            setToolChain(testedBinary.getToolChain());
            setPlatformToolProvider(testedBinary.getPlatformToolProvider());
            setBuildType(testedBinary.getBuildType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            Flavor flavor
        ) {
            NativeBinarySpecInternal nativeBinary = (NativeBinarySpecInternal) nativeBinarySpec;
            nativeBinary.setNamingScheme(namingScheme);
            nativeBinary.setTargetPlatform(platform);
            nativeBinary.setBuildType(buildType);
            nativeBinary.setFlavor(flavor);
            nativeBinary.setResolver(resolver);
            nativeBinary.setFileCollectionFactory(fileCollectionFactory);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            this.toolChain = toolChain;
        }
    
        @Override
        public NativePlatform getTargetPlatform() {
            return targetPlatform;
        }
    
        @Override
        public void setTargetPlatform(NativePlatform targetPlatform) {
            this.targetPlatform = targetPlatform;
        }
    
        @Override
        public BuildType getBuildType() {
            return buildType;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

            BuildOperationLogger operationLogger = getOperationLoggerFactory().newOperationLogger(getName(), getTemporaryDir());
            NativeCompileSpec spec = createCompileSpec();
            spec.setTargetPlatform(targetPlatform.get());
            spec.setTempDir(getTemporaryDir());
            spec.setObjectFileDir(objectFileDir.get().getAsFile());
            spec.include(includes);
            spec.systemInclude(systemIncludes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

                if (file.isFile()) {
                    spec.include(file.getParentFile());
                } else {
                    spec.include(file);
                }
            }
    
            spec.setTargetPlatform(targetPlatform);
            spec.setTempDir(getTemporaryDir());
            spec.setObjectFileDir(objectFileDir.get().getAsFile());
            spec.source(getSource());
            spec.setRemovedSourceFiles(removedFiles);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

            );
    
            if (getSource().isEmpty()) {
                setDidWork(cleanedOutputs);
                return;
            }
    
            LinkerSpec spec = createLinkerSpec();
            spec.setTargetPlatform(getTargetPlatform().get());
            spec.setTempDir(getTemporaryDir());
            spec.setOutputFile(getLinkedFile().get().getAsFile());
    
            spec.objectFiles(getSource());
            spec.libraries(getLibs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `setOutputFile(File)` was removed. Use `Property.set()` instead.
     * `setOutputFile(Provider)` was removed. Use `Property.set()` instead.
     * `getTargetPlatform()` was changed to return a `Property`.
     * `setTargetPlatform(NativePlatform)` was removed. Use `Property.set()` instead.
     * `getToolChain()` was changed to return a `Property`.
     * `setToolChain(NativeToolChain)` was removed. Use `Property.set()` instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top