diff --git a/.gitignore b/.gitignore index 237b5c2..a455e7b 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,9 @@ Pods/ # Carthage Carthage/Checkouts Carthage/Build + +# Swift Package Manager +/.build +/Packages +/*.xcodeproj +xcuserdata/ \ No newline at end of file diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..4f7538b --- /dev/null +++ b/Package.swift @@ -0,0 +1,19 @@ +// swift-tools-version:5.0 +import PackageDescription + +let package = Package( + name: "RPCircularProgress", + platforms: [ + .iOS(.v8) + ], + products: [ + .library(name: "RPCircularProgress", + targets: [ "RPCircularProgress" ]) + ], + dependencies: [], + targets: [ + .target(name: "RPCircularProgress", + dependencies: [], + path: "Source"), + ] +)