Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 128 for objectFile (0.48 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/objectivec/plugins/ObjectiveCPlugin.java

    import org.gradle.api.Project;
    import org.gradle.nativeplatform.plugins.NativeComponentPlugin;
    
    /**
     * A plugin for projects wishing to build native binary components from Objective-C sources.
     *
     * <p>Automatically includes the {@link ObjectiveCLangPlugin} for core Objective-C support and the {@link org.gradle.nativeplatform.plugins.NativeComponentPlugin} for native component support.</p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/LinkerSpec.java

    /**
     * A high level interface to the linker, specifying what is to be linked and how.
     */
    public interface LinkerSpec extends BinaryToolSpec {
    
        List<File> getObjectFiles();
    
        void objectFiles(Iterable<File> objectFiles);
    
        List<File> getLibraries();
    
        void libraries(Iterable<File> libraries);
    
        List<File> getLibraryPath();
    
        void libraryPath(File... libraryPath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProviderTest.groovy

            ToolType.CPP_COMPILER          | ['-x', 'c++']
            ToolType.C_COMPILER            | ['-x', 'c']
            ToolType.OBJECTIVEC_COMPILER   | ['-x', 'objective-c']
            ToolType.OBJECTIVECPP_COMPILER | ['-x', 'objective-c++']
            ToolType.ASSEMBLER             | []
        }
    
        def "gets compiler metadata from the provider for #toolType.toolName"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/resources/META-INF/gradle-plugins/org.gradle.objective-c.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 76 bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccPlatformToolChain.java

         */
        GccCommandLineToolConfiguration getCppCompiler();
    
        /**
         * Returns the settings to use for the Objective-C compiler.
         */
        GccCommandLineToolConfiguration getObjcCompiler();
    
        /**
         * Returns the settings to use for the Objective-C++ compiler.
         */
        GccCommandLineToolConfiguration getObjcppCompiler();
    
        /**
         * Returns the settings to use for the assembler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top