summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Gluck <justin.gluck@livio.io>2019-05-03 16:05:18 -0400
committerJustin Gluck <justin.gluck@livio.io>2019-05-03 16:05:18 -0400
commitb656990f7cfad3c0747895a6159f332901f1430f (patch)
tree72431490e02589e5f4922b2c5d5a794716ede60a
parent7c28d635fb99594ba401e32a28e6c067513098b3 (diff)
downloadsdl_ios-b656990f7cfad3c0747895a6159f332901f1430f.tar.gz
Create Package file
-rw-r--r--Package.swift20
1 files changed, 20 insertions, 0 deletions
diff --git a/Package.swift b/Package.swift
new file mode 100644
index 000000000..3943eb5ee
--- /dev/null
+++ b/Package.swift
@@ -0,0 +1,20 @@
+import PackageDescription
+
+let package = Package(
+ name: "SmartDeviceLink",
+ products: [
+ .library(name: "SmartDeviceLink", targets: ["SmartDeviceLink"])
+ .library(name: "SmartDeviceLinkSwift", targets: ["SmartDeviceLinkSwift"])
+ ],
+ targets: [
+ .target(
+ name: "SmartDeviceLink",
+ path: "SmartDeviceLink"
+ ),
+ .target(
+ name: "SmartDeviceLinkSwift",
+ path: "SmartDeviceLinkSwift"
+ ),
+ ]
+)
+