Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ARCHIVE_LIBRARY (0.15 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/FileTypes.java

        /**
         * Apple UTI for dynamic libraries.
         */
        MACH_O_DYNAMIC_LIBRARY("dylib", "compiled.mach-o.dylib"),
    
        /**
         * Apple UTI for static libraries.
         */
        ARCHIVE_LIBRARY("a", "archive.ar"),
    
        C_SOURCE_CODE("c", "sourcecode.c.c"),
        CC_SOURCE_CODE("cc", "sourcecode.cpp.cpp"),
        CPP_SOURCE_CODE("cpp", "sourcecode.cpp.cpp"),
        CXX_SOURCE_CODE("cxx", "sourcecode.cpp.cpp"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodeTarget.java

                return FileTypes.MACH_O_DYNAMIC_LIBRARY.identifier;
            } else if (PBXTarget.ProductType.STATIC_LIBRARY.equals(productType)) {
                return FileTypes.ARCHIVE_LIBRARY.identifier;
            } else {
                return "compiled";
            }
        }
    
        public Property<SwiftVersion> getSwiftSourceCompatibility() {
            return swiftSourceCompatibility;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top