diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..f2e5d9f --- /dev/null +++ b/Package.swift @@ -0,0 +1,23 @@ +// swift-tools-version:4.0 +// +// Package.swift +// XcodeEditor +// + +import PackageDescription + +let package = Package( + name: "XcodeEditor", + products: [ + .library(name: "XcodeEditor", targets: ["XcodeEditor"]), + ], + targets: [ + .target( + name: "XcodeEditor", + dependencies: [], + path: "Source", + publicHeadersPath: "Include" + ), + ], + swiftLanguageVersions: [4] +) diff --git a/XcodeEditor.xcodeproj/project.pbxproj b/XcodeEditor.xcodeproj/project.pbxproj index 2f25e48..291be3c 100644 --- a/XcodeEditor.xcodeproj/project.pbxproj +++ b/XcodeEditor.xcodeproj/project.pbxproj @@ -167,6 +167,7 @@ BA798FA437C805530668B6D8 /* XCKeyBuilderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XCKeyBuilderTests.m; sourceTree = ""; }; BA798FDC4BEACAEE1C96D00A /* XcodeEditor-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.info; path = "XcodeEditor-Info.plist"; sourceTree = ""; }; BA798FDC785409B3956AE64A /* XCTestResourceUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XCTestResourceUtils.h; sourceTree = ""; }; + E892C10F20149CFA00BED02B /* Package.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Package.swift; sourceTree = ""; }; E892C1112014A10300BED02B /* NSString+RemoveEmoji.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+RemoveEmoji.h"; sourceTree = ""; }; E892C1122014A10300BED02B /* XCAbstractDefinition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCAbstractDefinition.h; sourceTree = ""; }; E892C1132014A10300BED02B /* XCBuildFile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCBuildFile.h; sourceTree = ""; }; @@ -215,6 +216,7 @@ 6BE8FDA31C01C190001EF5B3 = { isa = PBXGroup; children = ( + E892C10F20149CFA00BED02B /* Package.swift */, 6BE8FDAF1C01C190001EF5B3 /* XcodeEditor */, 6BE8FDBB1C01C190001EF5B3 /* XcodeEditorTests */, 6BE8FDAE1C01C190001EF5B3 /* Products */,