Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for objectFile (0.27 sec)

  1. platforms/native/language-native/src/main/resources/META-INF/gradle-plugins/org.gradle.objective-cpp.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 80 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractPlatformToolProvider.java

            throw unavailableTool("Objective-C++ compiler is not available");
        }
    
        protected Compiler<?> createObjectiveCppPCHCompiler() {
            throw unavailableTool("Objective-C++ pre-compiled header compiler is not available");
        }
    
        protected Compiler<?> createObjectiveCCompiler() {
            throw unavailableTool("Objective-C compiler is not available");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LinkExeLinkerTest.groovy

            def libInFile = tmpDir.file("libs/in.lib")
            def spec = Stub(SharedLibraryLinkerSpec)
            spec.outputFile >> dllFile
            spec.importLibrary >> libFile
            spec.objectFiles >> [objFile]
            spec.libraries >> [libInFile]
    
            expect:
            argsTransformer.transform(spec) == [
                "/OUT:${dllFile}",
                "/NOLOGO",
                "/DLL",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

    public enum ToolType {
        CPP_COMPILER("C++ compiler"),
        C_COMPILER("C compiler"),
        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
        WINDOW_RESOURCES_COMPILER("Windows resources compiler"),
        ASSEMBLER("Assembler"),
        LINKER("Linker"),
        STATIC_LIB_ARCHIVER("Static library archiver"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/objectivec/ObjectiveCSourceSet.java

    import org.gradle.language.base.LanguageSourceSet;
    
    
    /**
     * A set of Objective-C source files.
     *
     * <p>An ObjectiveC source set contains a set of source files, together with an optional set of exported header files.</p>
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'objective-c'
     * }
     *
     * model {
     *     components {
     *         main(NativeLibrarySpec) {
     *             sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top