|
|
@@ -0,0 +1,23 @@
|
|
|
+// swift-tools-version:4.0
|
|
|
+// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
+
|
|
|
+import PackageDescription
|
|
|
+
|
|
|
+let package = Package(
|
|
|
+ name: "Reachability",
|
|
|
+ products: [
|
|
|
+ .library(
|
|
|
+ name: "Reachability",
|
|
|
+ targets: ["Reachability"]),
|
|
|
+ ],
|
|
|
+ targets: [
|
|
|
+ .target(
|
|
|
+ name: "Reachability",
|
|
|
+ dependencies: [],
|
|
|
+ path: "Reachability"),
|
|
|
+ .testTarget(
|
|
|
+ name: "ReachabilityTests",
|
|
|
+ dependencies: ["Reachability"],
|
|
|
+ path: "ReachabilityTests"),
|
|
|
+ ]
|
|
|
+)
|