diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /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 00000000..6d21daae --- /dev/null +++ b/Package.swift @@ -0,0 +1,31 @@ +// swift-tools-version:5.3 + +import PackageDescription + +let package = Package( + name: "XLPagerTabStrip", + platforms: [ + .iOS(.v9) + ], + products: [ + .library( + name: "XLPagerTabStrip", + targets: ["XLPagerTabStrip"] + ) + ], + targets: [ + .target( + name: "XLPagerTabStrip", + path: "Sources", + exclude: [ + "FXPageControl.h", + "FXPageControl.m" + ] + ), + .testTarget( + name: "XLPagerTabStripTests", + dependencies: ["XLPagerTabStrip"], + path: "Tests" + ) + ] +)