diff --git a/NvimView/Support/NvimViewSupport.xcodeproj/project.pbxproj b/NvimView/Support/NvimViewSupport.xcodeproj/project.pbxproj index 1dfb6f443..5c907d973 100644 --- a/NvimView/Support/NvimViewSupport.xcodeproj/project.pbxproj +++ b/NvimView/Support/NvimViewSupport.xcodeproj/project.pbxproj @@ -648,7 +648,6 @@ "$(inherited)", "@executable_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.qvacua.DrawerPerf; @@ -671,7 +670,6 @@ "$(inherited)", "@executable_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.qvacua.DrawerPerf; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/RxPack/Support/RxMessagePortDemo/AppDelegate.swift b/RxPack/Support/RxMessagePortDemo/AppDelegate.swift deleted file mode 100644 index 3ad9bf485..000000000 --- a/RxPack/Support/RxMessagePortDemo/AppDelegate.swift +++ /dev/null @@ -1,121 +0,0 @@ -/** - * Tae Won Ha - http://taewon.de - @hataewon - * See LICENSE - */ - -import Cocoa -import RxPack -import RxSwift - -@NSApplicationMain -class AppDelegate: NSObject, NSApplicationDelegate { - @IBOutlet var window: NSWindow! - - @IBOutlet var clientTextField: NSTextField! - - @IBOutlet var serverTextView: NSTextView! - @IBOutlet var clientTextView: NSTextView! - - private let server = RxMessagePortServer(queueQos: .default) - private let client = RxMessagePortClient(queueQos: .default) - - private var msgid = Int32(0) - - private let disposeBag = DisposeBag() - - @IBAction func serverStop(sender _: Any?) { - self.server.stop().subscribe().disposed(by: self.disposeBag) - } - - @IBAction func clientStop(sender _: Any?) { - self.client.stop().subscribe().disposed(by: self.disposeBag) - } - - @IBAction func clientSend(sender _: Any?) { - let text = self.clientTextField.stringValue - - self.logClient("Sending msg (\(self.msgid), \(text))") - self.client.send(msgid: self.msgid, data: text.data(using: .utf8)!, expectsReply: true) - .observe(on: MainScheduler.instance) - .subscribe(onSuccess: { data in - if let d = data { - self.logClient("Got reply from server: \(String(data: d, encoding: .utf8)!)") - } else { - self.logClient("Got reply from server: nil") - } - }, onFailure: { error in - self.logClient("Could not send msg: \(error)") - }) - .disposed(by: self.disposeBag) - - self.msgid += 1 - } - - func applicationDidFinishLaunching(_: Notification) { - self - .startServer() - .andThen(self.startClient()) - .subscribe(onCompleted: { - DispatchQueue.main.async { - self.logServer("Server started with name: com.qvacua.RxMessagePort.demo.server") - self.logClient("Connected to com.qvacua.RxMessagePort.demo.server") - } - }, onError: { error in - DispatchQueue.main.async { - self.logServer("There was an error: \(error)") - self.logClient("There was an error: \(error)") - } - }) - .disposed(by: self.disposeBag) - } - - func applicationWillTerminate(_: Notification) { - self.client.stop().subscribe().disposed(by: self.disposeBag) - self.server.stop().subscribe().disposed(by: self.disposeBag) - } - - private func startServer() -> Completable { - self.logServer("Starting server...") - - self.server.stream - .observe(on: MainScheduler.instance) - .subscribe(onNext: { message in - self.logServer("Got event in stream \(message)") - }) - .disposed(by: self.disposeBag) - - self.server.syncReplyBody = { msgid, data -> Data? in - DispatchQueue.main.async { - self.logServer("Preparing synchronous reply to (\(msgid), \(String(describing: data)))") - } - - if let d = data { - return "Reply to (\(msgid), \(String(data: d, encoding: .utf8)!))".data(using: .utf8) - } - - return "Reply to (\(msgid), nil)".data(using: .utf8) - } - - return self.server.run(as: "com.qvacua.RxMessagePort.demo.server") - } - - private func startClient() -> Completable { - self.logClient("Starting client...") - return self.client.connect(to: "com.qvacua.RxMessagePort.demo.server") - } - - private func logServer(_ msg: String) { - self.serverTextView.append(string: "\(msg)\n") - } - - private func logClient(_ msg: String) { - self.clientTextView.append(string: "\(msg)\n") - } -} - -extension NSTextView { - func append(string: String) { - self.textStorage?.append(NSAttributedString(string: string)) - self.scrollToEndOfDocument(nil) - } -} diff --git a/RxPack/Support/RxMessagePortDemo/Assets.xcassets/AppIcon.appiconset/Contents.json b/RxPack/Support/RxMessagePortDemo/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 2db2b1c7c..000000000 --- a/RxPack/Support/RxMessagePortDemo/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "images" : [ - { - "idiom" : "mac", - "size" : "16x16", - "scale" : "1x" - }, - { - "idiom" : "mac", - "size" : "16x16", - "scale" : "2x" - }, - { - "idiom" : "mac", - "size" : "32x32", - "scale" : "1x" - }, - { - "idiom" : "mac", - "size" : "32x32", - "scale" : "2x" - }, - { - "idiom" : "mac", - "size" : "128x128", - "scale" : "1x" - }, - { - "idiom" : "mac", - "size" : "128x128", - "scale" : "2x" - }, - { - "idiom" : "mac", - "size" : "256x256", - "scale" : "1x" - }, - { - "idiom" : "mac", - "size" : "256x256", - "scale" : "2x" - }, - { - "idiom" : "mac", - "size" : "512x512", - "scale" : "1x" - }, - { - "idiom" : "mac", - "size" : "512x512", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/RxPack/Support/RxMessagePortDemo/Assets.xcassets/Contents.json b/RxPack/Support/RxMessagePortDemo/Assets.xcassets/Contents.json deleted file mode 100644 index da4a164c9..000000000 --- a/RxPack/Support/RxMessagePortDemo/Assets.xcassets/Contents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/RxPack/Support/RxMessagePortDemo/Base.lproj/MainMenu.xib b/RxPack/Support/RxMessagePortDemo/Base.lproj/MainMenu.xib deleted file mode 100644 index 682d4ff77..000000000 --- a/RxPack/Support/RxMessagePortDemo/Base.lproj/MainMenu.xib +++ /dev/null @@ -1,862 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Default - - - - - - - Left to Right - - - - - - - Right to Left - - - - - - - - - - - Default - - - - - - - Left to Right - - - - - - - Right to Left - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/RxPack/Support/RxMessagePortDemo/Info.plist b/RxPack/Support/RxMessagePortDemo/Info.plist deleted file mode 100644 index 5cfaf78dd..000000000 --- a/RxPack/Support/RxMessagePortDemo/Info.plist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIconFile - - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSHumanReadableCopyright - Copyright © 2019 Tae Won Ha. All rights reserved. - NSMainNibFile - MainMenu - NSPrincipalClass - NSApplication - - diff --git a/RxPack/Support/RxPackSupport.xcodeproj/project.pbxproj b/RxPack/Support/RxPackSupport.xcodeproj/project.pbxproj deleted file mode 100644 index 5bfeece0a..000000000 --- a/RxPack/Support/RxPackSupport.xcodeproj/project.pbxproj +++ /dev/null @@ -1,400 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXBuildFile section */ - 4B022661224AB1490052362B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4B022660224AB1490052362B /* Assets.xcassets */; }; - 4B022664224AB1490052362B /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4B022662224AB1490052362B /* MainMenu.xib */; }; - 4B2AD13B293BCC4E009DA797 /* RxPack in Frameworks */ = {isa = PBXBuildFile; productRef = 4B2AD13A293BCC4E009DA797 /* RxPack */; }; - 4B7FBFD024EC8632002D12A1 /* RxSwift in Frameworks */ = {isa = PBXBuildFile; productRef = 4B7FBFCF24EC8632002D12A1 /* RxSwift */; }; - 4B7FBFD124EC8851002D12A1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B02265E224AB1490052362B /* AppDelegate.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 4B022671224ACCE80052362B /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 4B02265C224AB1490052362B /* RxMessagePortDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RxMessagePortDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 4B02265E224AB1490052362B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 4B022660224AB1490052362B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 4B022663224AB1490052362B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; - 4B022665224AB1490052362B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 4BE73FA8285DC4DA00B63585 /* RxPack */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = RxPack; path = ..; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 4B022659224AB1490052362B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4B2AD13B293BCC4E009DA797 /* RxPack in Frameworks */, - 4B7FBFD024EC8632002D12A1 /* RxSwift in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 4B02263A224AB11A0052362B = { - isa = PBXGroup; - children = ( - 4BE73FA7285DC4DA00B63585 /* Packages */, - 4B02265D224AB1490052362B /* RxMessagePortDemo */, - 4B022644224AB11A0052362B /* Products */, - 4BE73FA9285DC53000B63585 /* Frameworks */, - ); - sourceTree = ""; - }; - 4B022644224AB11A0052362B /* Products */ = { - isa = PBXGroup; - children = ( - 4B02265C224AB1490052362B /* RxMessagePortDemo.app */, - ); - name = Products; - sourceTree = ""; - }; - 4B02265D224AB1490052362B /* RxMessagePortDemo */ = { - isa = PBXGroup; - children = ( - 4B02265E224AB1490052362B /* AppDelegate.swift */, - 4B022660224AB1490052362B /* Assets.xcassets */, - 4B022662224AB1490052362B /* MainMenu.xib */, - 4B022665224AB1490052362B /* Info.plist */, - ); - path = RxMessagePortDemo; - sourceTree = ""; - }; - 4BE73FA7285DC4DA00B63585 /* Packages */ = { - isa = PBXGroup; - children = ( - 4BE73FA8285DC4DA00B63585 /* RxPack */, - ); - name = Packages; - sourceTree = ""; - }; - 4BE73FA9285DC53000B63585 /* Frameworks */ = { - isa = PBXGroup; - children = ( - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 4B02265B224AB1490052362B /* RxMessagePortDemo */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4B022667224AB1490052362B /* Build configuration list for PBXNativeTarget "RxMessagePortDemo" */; - buildPhases = ( - 4B022658224AB1490052362B /* Sources */, - 4B022659224AB1490052362B /* Frameworks */, - 4B02265A224AB1490052362B /* Resources */, - 4B022671224ACCE80052362B /* Embed Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = RxMessagePortDemo; - packageProductDependencies = ( - 4B7FBFCF24EC8632002D12A1 /* RxSwift */, - 4B2AD13A293BCC4E009DA797 /* RxPack */, - ); - productName = RxMessagePortDemo; - productReference = 4B02265C224AB1490052362B /* RxMessagePortDemo.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 4B02263B224AB11A0052362B /* Project object */ = { - isa = PBXProject; - attributes = { - BuildIndependentTargetsInParallel = YES; - LastSwiftUpdateCheck = 1020; - LastUpgradeCheck = 1500; - ORGANIZATIONNAME = "Tae Won Ha"; - TargetAttributes = { - 4B02265B224AB1490052362B = { - CreatedOnToolsVersion = 10.2; - }; - }; - }; - buildConfigurationList = 4B02263E224AB11A0052362B /* Build configuration list for PBXProject "RxPackSupport" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 4B02263A224AB11A0052362B; - packageReferences = ( - 4B7FBFCE24EC8632002D12A1 /* XCRemoteSwiftPackageReference "RxSwift" */, - ); - productRefGroup = 4B022644224AB11A0052362B /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 4B02265B224AB1490052362B /* RxMessagePortDemo */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 4B02265A224AB1490052362B /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4B022661224AB1490052362B /* Assets.xcassets in Resources */, - 4B022664224AB1490052362B /* MainMenu.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 4B022658224AB1490052362B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4B7FBFD124EC8851002D12A1 /* AppDelegate.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 4B022662224AB1490052362B /* MainMenu.xib */ = { - isa = PBXVariantGroup; - children = ( - 4B022663224AB1490052362B /* Base */, - ); - name = MainMenu.xib; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 4B02264F224AB11A0052362B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - 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; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEAD_CODE_STRIPPING = YES; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - MACOSX_DEPLOYMENT_TARGET = 13.0; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_DISABLE_SAFETY_CHECKS = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - }; - name = Debug; - }; - 4B022650224AB11A0052362B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - 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; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEAD_CODE_STRIPPING = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = fast; - 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; - MACOSX_DEPLOYMENT_TARGET = 13.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_DISABLE_SAFETY_CHECKS = YES; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - }; - name = Release; - }; - 4B022668224AB1490052362B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - COMBINE_HIDPI_IMAGES = YES; - DEAD_CODE_STRIPPING = YES; - INFOPLIST_FILE = RxMessagePortDemo/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; - PRODUCT_BUNDLE_IDENTIFIER = com.qvacua.RxMessagePortDemo; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - }; - name = Debug; - }; - 4B022669224AB1490052362B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - COMBINE_HIDPI_IMAGES = YES; - DEAD_CODE_STRIPPING = YES; - INFOPLIST_FILE = RxMessagePortDemo/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - ); - MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)"; - PRODUCT_BUNDLE_IDENTIFIER = com.qvacua.RxMessagePortDemo; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 4B02263E224AB11A0052362B /* Build configuration list for PBXProject "RxPackSupport" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4B02264F224AB11A0052362B /* Debug */, - 4B022650224AB11A0052362B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4B022667224AB1490052362B /* Build configuration list for PBXNativeTarget "RxMessagePortDemo" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4B022668224AB1490052362B /* Debug */, - 4B022669224AB1490052362B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - -/* Begin XCRemoteSwiftPackageReference section */ - 4B7FBFCE24EC8632002D12A1 /* XCRemoteSwiftPackageReference "RxSwift" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/ReactiveX/RxSwift"; - requirement = { - kind = upToNextMajorVersion; - minimumVersion = 6.6.0; - }; - }; -/* End XCRemoteSwiftPackageReference section */ - -/* Begin XCSwiftPackageProductDependency section */ - 4B2AD13A293BCC4E009DA797 /* RxPack */ = { - isa = XCSwiftPackageProductDependency; - productName = RxPack; - }; - 4B7FBFCF24EC8632002D12A1 /* RxSwift */ = { - isa = XCSwiftPackageProductDependency; - package = 4B7FBFCE24EC8632002D12A1 /* XCRemoteSwiftPackageReference "RxSwift" */; - productName = RxSwift; - }; -/* End XCSwiftPackageProductDependency section */ - }; - rootObject = 4B02263B224AB11A0052362B /* Project object */; -} diff --git a/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a62..000000000 --- a/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003..000000000 --- a/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved deleted file mode 100644 index 87a4565fc..000000000 --- a/RxPack/Support/RxPackSupport.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ /dev/null @@ -1,68 +0,0 @@ -{ - "pins" : [ - { - "identity" : "bluesocket", - "kind" : "remoteSourceControl", - "location" : "https://github.com/IBM-Swift/BlueSocket", - "state" : { - "revision" : "dd924c3bc2c1c144c42b8dda3896f1a03115ded4", - "version" : "2.0.2" - } - }, - { - "identity" : "cwlcatchexception", - "kind" : "remoteSourceControl", - "location" : "https://github.com/mattgallagher/CwlCatchException.git", - "state" : { - "revision" : "35f9e770f54ce62dd8526470f14c6e137cef3eea", - "version" : "2.1.1" - } - }, - { - "identity" : "cwlpreconditiontesting", - "kind" : "remoteSourceControl", - "location" : "https://github.com/mattgallagher/CwlPreconditionTesting.git", - "state" : { - "revision" : "c21f7bab5ca8eee0a9998bbd17ca1d0eb45d4688", - "version" : "2.1.0" - } - }, - { - "identity" : "messagepack.swift", - "kind" : "remoteSourceControl", - "location" : "https://github.com/a2/MessagePack.swift", - "state" : { - "revision" : "27b35fd49e92fcae395bf8ccb233499d89cc7890", - "version" : "4.0.0" - } - }, - { - "identity" : "nimble", - "kind" : "remoteSourceControl", - "location" : "https://github.com/Quick/Nimble", - "state" : { - "revision" : "1f3bde57bde12f5e7b07909848c071e9b73d6edc", - "version" : "10.0.0" - } - }, - { - "identity" : "rxswift", - "kind" : "remoteSourceControl", - "location" : "https://github.com/ReactiveX/RxSwift", - "state" : { - "revision" : "b4307ba0b6425c0ba4178e138799946c3da594f8", - "version" : "6.5.0" - } - }, - { - "identity" : "swift-argument-parser", - "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-argument-parser", - "state" : { - "revision" : "6b2aa2748a7881eebb9f84fb10c01293e15b52ca", - "version" : "0.5.0" - } - } - ], - "version" : 2 -} diff --git a/VimR.xcworkspace/contents.xcworkspacedata b/VimR.xcworkspace/contents.xcworkspacedata index d21f5f792..f9c6587ab 100644 --- a/VimR.xcworkspace/contents.xcworkspacedata +++ b/VimR.xcworkspace/contents.xcworkspacedata @@ -19,9 +19,6 @@ - -