Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for objectFile (0.34 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/objective-c/groovy/settings.gradle

    rootProject.name = 'objective-c'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/HelloWorldApp.java

            if (plugin.equals("c")) {
                return "c";
            }
            if (plugin.equals("cpp")) {
                return "cpp";
            }
            if (plugin.equals("objective-c")) {
                return "objc";
            }
            if (plugin.equals("objective-cpp")) {
                return "objcpp";
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/objective-cpp/groovy/settings.gradle

    rootProject.name = 'objective-cpp'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 35 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    
    class MixedObjectiveCHelloWorldApp extends HelloWorldApp {
    
        List pluginList = ["objective-c", "objective-cpp", "c", "cpp"]
    
        String getExtraConfiguration(String binaryName = null) {
            return """
                model {
                    binaries {
                        ${binaryName ? binaryName : "all"} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/objective-cpp/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'objective-cpp'
    }
    // end::apply-plugin[]
    
    // tag::executables[]
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
    // end::executables[]
    
    // tag::all-binaries[]
    model {
        binaries {
            all {
                //on macOS we need different linker settings than on Linux or Windows
                if (targetPlatform.operatingSystem.macOsX) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 743 bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/objectivecpp/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Model classes for building from Objective-C++ language sources.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 734 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:objectivec_sources]]
    === Objective-C sources
    
    Objective-C language support is provided by means of the `'objective-c'` plugin.
    
    === Example: The 'objective-c' plugin
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/objective-c/groovy/build.gradle[tag=apply-plugin]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/objectivecpp/internal/DefaultObjectiveCppSourceSet.java

    public class DefaultObjectiveCppSourceSet extends AbstractHeaderExportingDependentSourceSet implements ObjectiveCppSourceSet {
        @Override
        protected String getLanguageName() {
            return "Objective-C++";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/objective-c/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'objective-c'
    }
    // end::apply-plugin[]
    
    // tag::executables[]
    model {
        components {
            main(NativeExecutableSpec)
        }
    }
    // end::executables[]
    
    // tag::all-binaries[]
    model {
        binaries {
            all {
                //on macOS we need different settings than on Linux or Windows
                if (targetPlatform.operatingSystem.macOsX) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 703 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/objectivecpp/tasks/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for compiling Objective-C++ sources for a native runtime.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 740 bytes
    - Viewed (0)
Back to top