Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 175 for targetPlatform (0.26 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppExecutable.java

            super(names, objectFactory, baseName, sourceFiles, componentHeaderDirs, configurations, implementation, targetPlatform, toolChain, platformToolProvider, identity);
            this.executableFile = objectFactory.fileProperty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            if (vsInstall == null) {
                throw new UnsupportedOperationException("Visual Studio is unavailable on this system.")
            }
            DefaultNativePlatform targetPlatform = new DefaultNativePlatform("default");
            def visualCpp = vsInstall.visualCpp.forPlatform(targetPlatform)
            vcBin = visualCpp.binDir
            vcPath = visualCpp.path.join(';')
        }
    
        static @Nullable VisualStudioInstall findVisualStudio() {
    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/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/TargetPlatformConfiguration.java

    public interface TargetPlatformConfiguration {
        /**
         * Returns whether a platform is supported or not.
         */
        boolean supportsPlatform(NativePlatformInternal targetPlatform);
    
        /**
         *  applies a platform specific toolchain configuration
         */
        void apply(DefaultGccPlatformToolChain platformToolChain);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.platform.base.PlatformAwareComponentSpec.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>targetPlatform</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

            }
    
            buildFile << """
    model {
        platforms {
            x86 {
                architecture "i386"
            }
        }
        components {
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                binaries.all {
                    linker.args "-v"
                }
            }
        }
    }
                """
            then:
            succeeds "mainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftExecutable.java

            super(names, objectFactory, taskDependencyFactory, module, testable, source, configurations, implementation, targetPlatform, toolChain, platformToolProvider, identity);
            this.executableFile = objectFactory.fileProperty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolChainInternal.java

    import org.gradle.platform.base.ToolChain;
    
    public interface ToolChainInternal<T extends Platform> extends ToolChain {
        /**
         * Locates the tools that can target the given platform.
         */
        ToolProvider select(T targetPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 954 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinary.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>flavor</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>buildType</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.play.PlayApplicationBinarySpec.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>jarFile</td>
                </tr>
                <tr>
                    <td>assetsJarFile</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

    eclipse.jdt {
        sourceCompatibility = '1.4'
        targetCompatibility = 1.3
    }
    '''
    
            def jdt = parseJdtFile()
            assert jdt.contains('source=1.4')
            assert jdt.contains('targetPlatform=1.3')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void sourceAndTargetCompatibilityDefaultIsCurrentJavaVersion() {
            runEclipseTask '''
    apply plugin: 'java'
    apply plugin: 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top