Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for TargetMachine (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html#org.gradle.language.swift.tasks.SwiftCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html#org.gradle.language.cpp.tasks.CppCompile:targetPlatform[targetPlatform]:: derived from the `TargetMachine` of the binary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

                        api project(':card')
                    }
                    library {
                        binaries.configureEach {
                            dependencies {
                                if (targetMachine.operatingSystemFamily.macOs) {
                                    implementation project(':shuffle')
                                }
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                    apply plugin: 'swift-application'
                    application {
                        binaries.configureEach {
                            dependencies {
                                if (targetMachine.operatingSystemFamily.macOs) {
                                    implementation project(':hello')
                                }
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    === Selecting target machines
    
    By default, Gradle will attempt to create a Swift binary variant for the host operating system and architecture.
    It is possible to override this by specifying the set of `TargetMachine` on the `application` or `library` script block:
    
    .Setting target machines
    ====
    include::sample[dir="snippets/swift/basic/kotlin",files="build.gradle.kts[tags=swift-select-target-machines]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    [[sec:select_cpp_target_machines]]
    === Selecting target machines
    
    By default, Gradle will attempt to create a {cpp} binary variant for the host operating system and architecture.
    It is possible to override this by specifying the set of `TargetMachine` on the `application` or `library` script block:
    
    .Setting target machines
    ====
    include::sample[dir="snippets/cpp/basic/kotlin",files="build.gradle.kts[tags=cpp-select-target-machines]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top