-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Initial implementation of generator.
- Loading branch information
Showing
12 changed files
with
2,305 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
323 changes: 323 additions & 0 deletions
323
UTSChatAdapter/UTSChatAdapter.xcodeproj/project.pbxproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,323 @@ | ||
// !$*UTF8*$! | ||
{ | ||
archiveVersion = 1; | ||
classes = { | ||
}; | ||
objectVersion = 77; | ||
objects = { | ||
|
||
/* Begin PBXBuildFile section */ | ||
84E1054E2CBEEC9800244C8F /* AblyChat in Frameworks */ = {isa = PBXBuildFile; productRef = 84E1054D2CBEEC9800244C8F /* AblyChat */; }; | ||
/* End PBXBuildFile section */ | ||
|
||
/* Begin PBXCopyFilesBuildPhase section */ | ||
847DD5D92CBC34E5000F89AE /* CopyFiles */ = { | ||
isa = PBXCopyFilesBuildPhase; | ||
buildActionMask = 2147483647; | ||
dstPath = /usr/share/man/man1/; | ||
dstSubfolderSpec = 0; | ||
files = ( | ||
); | ||
runOnlyForDeploymentPostprocessing = 1; | ||
}; | ||
/* End PBXCopyFilesBuildPhase section */ | ||
|
||
/* Begin PBXFileReference section */ | ||
847DD5DB2CBC34E5000F89AE /* UTSChatAdapter */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = UTSChatAdapter; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
/* End PBXFileReference section */ | ||
|
||
/* Begin PBXFileSystemSynchronizedRootGroup section */ | ||
847DD5DD2CBC34E5000F89AE /* UTSChatAdapter */ = { | ||
isa = PBXFileSystemSynchronizedRootGroup; | ||
path = UTSChatAdapter; | ||
sourceTree = "<group>"; | ||
}; | ||
/* End PBXFileSystemSynchronizedRootGroup section */ | ||
|
||
/* Begin PBXFrameworksBuildPhase section */ | ||
847DD5D82CBC34E5000F89AE /* Frameworks */ = { | ||
isa = PBXFrameworksBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
84E1054E2CBEEC9800244C8F /* AblyChat in Frameworks */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXFrameworksBuildPhase section */ | ||
|
||
/* Begin PBXGroup section */ | ||
847DD5D22CBC34E5000F89AE = { | ||
isa = PBXGroup; | ||
children = ( | ||
847DD5DD2CBC34E5000F89AE /* UTSChatAdapter */, | ||
847DD5ED2CBC3674000F89AE /* Frameworks */, | ||
847DD5DC2CBC34E5000F89AE /* Products */, | ||
); | ||
sourceTree = "<group>"; | ||
}; | ||
847DD5DC2CBC34E5000F89AE /* Products */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
847DD5DB2CBC34E5000F89AE /* UTSChatAdapter */, | ||
); | ||
name = Products; | ||
sourceTree = "<group>"; | ||
}; | ||
847DD5ED2CBC3674000F89AE /* Frameworks */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
); | ||
name = Frameworks; | ||
sourceTree = "<group>"; | ||
}; | ||
/* End PBXGroup section */ | ||
|
||
/* Begin PBXNativeTarget section */ | ||
847DD5DA2CBC34E5000F89AE /* UTSChatAdapter */ = { | ||
isa = PBXNativeTarget; | ||
buildConfigurationList = 847DD5E22CBC34E5000F89AE /* Build configuration list for PBXNativeTarget "UTSChatAdapter" */; | ||
buildPhases = ( | ||
847DD5D72CBC34E5000F89AE /* Sources */, | ||
847DD5D82CBC34E5000F89AE /* Frameworks */, | ||
847DD5D92CBC34E5000F89AE /* CopyFiles */, | ||
); | ||
buildRules = ( | ||
); | ||
dependencies = ( | ||
); | ||
fileSystemSynchronizedGroups = ( | ||
847DD5DD2CBC34E5000F89AE /* UTSChatAdapter */, | ||
); | ||
name = UTSChatAdapter; | ||
packageProductDependencies = ( | ||
84E1054D2CBEEC9800244C8F /* AblyChat */, | ||
); | ||
productName = UTSChatAdapter; | ||
productReference = 847DD5DB2CBC34E5000F89AE /* UTSChatAdapter */; | ||
productType = "com.apple.product-type.tool"; | ||
}; | ||
/* End PBXNativeTarget section */ | ||
|
||
/* Begin PBXProject section */ | ||
847DD5D32CBC34E5000F89AE /* Project object */ = { | ||
isa = PBXProject; | ||
attributes = { | ||
BuildIndependentTargetsInParallel = 1; | ||
LastSwiftUpdateCheck = 1600; | ||
LastUpgradeCheck = 1600; | ||
TargetAttributes = { | ||
847DD5DA2CBC34E5000F89AE = { | ||
CreatedOnToolsVersion = 16.0; | ||
}; | ||
}; | ||
}; | ||
buildConfigurationList = 847DD5D62CBC34E5000F89AE /* Build configuration list for PBXProject "UTSChatAdapter" */; | ||
developmentRegion = en; | ||
hasScannedForEncodings = 0; | ||
knownRegions = ( | ||
en, | ||
Base, | ||
); | ||
mainGroup = 847DD5D22CBC34E5000F89AE; | ||
minimizedProjectReferenceProxies = 1; | ||
packageReferences = ( | ||
84E1054C2CBEEC9800244C8F /* XCLocalSwiftPackageReference "../../ably-chat-swift" */, | ||
); | ||
preferredProjectObjectVersion = 77; | ||
productRefGroup = 847DD5DC2CBC34E5000F89AE /* Products */; | ||
projectDirPath = ""; | ||
projectRoot = ""; | ||
targets = ( | ||
847DD5DA2CBC34E5000F89AE /* UTSChatAdapter */, | ||
); | ||
}; | ||
/* End PBXProject section */ | ||
|
||
/* Begin PBXSourcesBuildPhase section */ | ||
847DD5D72CBC34E5000F89AE /* Sources */ = { | ||
isa = PBXSourcesBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXSourcesBuildPhase section */ | ||
|
||
/* Begin XCBuildConfiguration section */ | ||
847DD5E02CBC34E5000F89AE /* Debug */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; | ||
CLANG_ANALYZER_NONNULL = YES; | ||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; | ||
CLANG_ENABLE_MODULES = YES; | ||
CLANG_ENABLE_OBJC_ARC = YES; | ||
CLANG_ENABLE_OBJC_WEAK = YES; | ||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
CLANG_WARN_BOOL_CONVERSION = YES; | ||
CLANG_WARN_COMMA = YES; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
CLANG_WARN_EMPTY_BODY = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INFINITE_RECURSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
CLANG_WARN_UNREACHABLE_CODE = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
COPY_PHASE_STRIP = NO; | ||
DEBUG_INFORMATION_FORMAT = dwarf; | ||
ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
ENABLE_TESTABILITY = YES; | ||
ENABLE_USER_SCRIPT_SANDBOXING = YES; | ||
GCC_C_LANGUAGE_STANDARD = gnu17; | ||
GCC_DYNAMIC_NO_PIC = NO; | ||
GCC_NO_COMMON_BLOCKS = YES; | ||
GCC_OPTIMIZATION_LEVEL = 0; | ||
GCC_PREPROCESSOR_DEFINITIONS = ( | ||
"DEBUG=1", | ||
"$(inherited)", | ||
); | ||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
GCC_WARN_UNUSED_FUNCTION = YES; | ||
GCC_WARN_UNUSED_VARIABLE = YES; | ||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES; | ||
MACOSX_DEPLOYMENT_TARGET = 15.0; | ||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; | ||
MTL_FAST_MATH = YES; | ||
ONLY_ACTIVE_ARCH = YES; | ||
SDKROOT = macosx; | ||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; | ||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||
}; | ||
name = Debug; | ||
}; | ||
847DD5E12CBC34E5000F89AE /* Release */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; | ||
CLANG_ANALYZER_NONNULL = YES; | ||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; | ||
CLANG_ENABLE_MODULES = YES; | ||
CLANG_ENABLE_OBJC_ARC = YES; | ||
CLANG_ENABLE_OBJC_WEAK = YES; | ||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
CLANG_WARN_BOOL_CONVERSION = YES; | ||
CLANG_WARN_COMMA = YES; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
CLANG_WARN_EMPTY_BODY = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INFINITE_RECURSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
CLANG_WARN_UNREACHABLE_CODE = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
COPY_PHASE_STRIP = NO; | ||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | ||
ENABLE_NS_ASSERTIONS = NO; | ||
ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
ENABLE_USER_SCRIPT_SANDBOXING = YES; | ||
GCC_C_LANGUAGE_STANDARD = gnu17; | ||
GCC_NO_COMMON_BLOCKS = YES; | ||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
GCC_WARN_UNUSED_FUNCTION = YES; | ||
GCC_WARN_UNUSED_VARIABLE = YES; | ||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES; | ||
MACOSX_DEPLOYMENT_TARGET = 15.0; | ||
MTL_ENABLE_DEBUG_INFO = NO; | ||
MTL_FAST_MATH = YES; | ||
SDKROOT = macosx; | ||
SWIFT_COMPILATION_MODE = wholemodule; | ||
}; | ||
name = Release; | ||
}; | ||
847DD5E32CBC34E5000F89AE /* Debug */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
CODE_SIGN_STYLE = Automatic; | ||
MACOSX_DEPLOYMENT_TARGET = 13; | ||
PRODUCT_NAME = "$(TARGET_NAME)"; | ||
SWIFT_VERSION = 5.0; | ||
}; | ||
name = Debug; | ||
}; | ||
847DD5E42CBC34E5000F89AE /* Release */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
CODE_SIGN_STYLE = Automatic; | ||
MACOSX_DEPLOYMENT_TARGET = 13; | ||
PRODUCT_NAME = "$(TARGET_NAME)"; | ||
SWIFT_VERSION = 5.0; | ||
}; | ||
name = Release; | ||
}; | ||
/* End XCBuildConfiguration section */ | ||
|
||
/* Begin XCConfigurationList section */ | ||
847DD5D62CBC34E5000F89AE /* Build configuration list for PBXProject "UTSChatAdapter" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
847DD5E02CBC34E5000F89AE /* Debug */, | ||
847DD5E12CBC34E5000F89AE /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
847DD5E22CBC34E5000F89AE /* Build configuration list for PBXNativeTarget "UTSChatAdapter" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
847DD5E32CBC34E5000F89AE /* Debug */, | ||
847DD5E42CBC34E5000F89AE /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
/* End XCConfigurationList section */ | ||
|
||
/* Begin XCLocalSwiftPackageReference section */ | ||
84E1054C2CBEEC9800244C8F /* XCLocalSwiftPackageReference "../../ably-chat-swift" */ = { | ||
isa = XCLocalSwiftPackageReference; | ||
relativePath = "../../ably-chat-swift"; | ||
}; | ||
/* End XCLocalSwiftPackageReference section */ | ||
|
||
/* Begin XCSwiftPackageProductDependency section */ | ||
84E1054D2CBEEC9800244C8F /* AblyChat */ = { | ||
isa = XCSwiftPackageProductDependency; | ||
productName = AblyChat; | ||
}; | ||
/* End XCSwiftPackageProductDependency section */ | ||
}; | ||
rootObject = 847DD5D32CBC34E5000F89AE /* Project object */; | ||
} |
7 changes: 7 additions & 0 deletions
7
UTSChatAdapter/UTSChatAdapter.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
...dapter/UTSChatAdapter.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"originHash" : "901dc16707a50f161b9ca480d3ab40ad69e36f382e77f0862a0e8f857b7206be", | ||
"pins" : [ | ||
{ | ||
"identity" : "ably-cocoa", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/ably/ably-cocoa", | ||
"state" : { | ||
"branch" : "main", | ||
"revision" : "4856ba6a423788902a6ef680793e7f404ceb4a51" | ||
} | ||
}, | ||
{ | ||
"identity" : "delta-codec-cocoa", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/ably/delta-codec-cocoa", | ||
"state" : { | ||
"revision" : "3ee62ea40a63996b55818d44b3f0e56d8753be88", | ||
"version" : "1.3.3" | ||
} | ||
}, | ||
{ | ||
"identity" : "msgpack-objective-c", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/rvi/msgpack-objective-C", | ||
"state" : { | ||
"revision" : "3e36b48e04ecd756cb927bd5f5b9bf6d45e475f9", | ||
"version" : "0.4.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-async-algorithms", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-async-algorithms", | ||
"state" : { | ||
"revision" : "5c8bd186f48c16af0775972700626f0b74588278", | ||
"version" : "1.0.2" | ||
} | ||
}, | ||
{ | ||
"identity" : "swift-collections", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/apple/swift-collections.git", | ||
"state" : { | ||
"revision" : "671108c96644956dddcd89dd59c203dcdb36cec7", | ||
"version" : "1.1.4" | ||
} | ||
} | ||
], | ||
"version" : 3 | ||
} |
Oops, something went wrong.