Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 178 for targetPlatform (0.42 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.tasks.CreateStaticLibrary.xml

                </tr>
                <tr>
                    <td>outputFile</td>
                </tr>
                <tr>
                    <td>toolChain</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>staticLibArgs</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.5K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

    }
    """
            settingsFile << "rootProject.name = 'test'"
        }
    
        private void useStandardConfig() {
            buildFile << """
    model {
        components {
            hello(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            helloTest(CUnitTestSuiteSpec) {
                testing \$.components.hello
            }
        }
        binaries {
            withType(CUnitTestSuiteBinarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.language.rc.tasks.WindowsResourceCompile.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>toolChain</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>outputDir</td>
                </tr>
                <tr>
                    <td>source</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.tasks.AbstractLinkTask.xml

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

                    buildTypes {
                        debug
                        release
                    }
                    components {
                        all {
                            targetPlatform "win32"
                            targetPlatform "x64"
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateObjectiveCBaseNamesTestApp.groovy

            """),
              fooSource(1),
              fooSource(2)]
        }
    
        public String getExtraConfiguration() {
            return """
                binaries {
                    all {
                        if (targetPlatform.operatingSystem.macOsX) {
                            linker.args "-framework", "Foundation"
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.language.swift.tasks.SwiftCompile.xml

                </tr>
                <tr>
                    <td>compilerArgs</td>
                </tr>
                <tr>
                    <td>toolChain</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>source</td>
                </tr>
                <tr>
                    <td>moduleFile</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinarySpec.xml

                </thead>
                <tr>
                    <td>buildType</td>
                </tr>
                <tr>
                    <td>flavor</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>component</td>
                </tr>
                <tr>
                    <td>toolChain</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/plugins/NativeBinariesTestPluginTest.groovy

                        tasks.create("install", InstallExecutable) {
                            it.installDirectory = new File(".")
                            it.executableFile = new File("exe")
                            it.targetPlatform = Mock(NativePlatform) {
                                getOperatingSystem() >> Mock(OperatingSystem) {
                                    getName() >> "test"
                                }
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top