summaryrefslogtreecommitdiff
path: root/Package.swift
diff options
context:
space:
mode:
authorJustin Gluck <justin.gluck@livio.io>2019-05-09 10:25:26 -0400
committerJustin Gluck <justin.gluck@livio.io>2019-05-09 10:25:26 -0400
commit7c523982107255319e1823150be2855bfddbd475 (patch)
tree0d4df289382bf7a09e8289bc2542ecafcbd76200 /Package.swift
parentee2980e427e4fcf98faddff9da63d62c5959dba0 (diff)
downloadsdl_ios-7c523982107255319e1823150be2855bfddbd475.tar.gz
adding SDLswift as a Dependency
Diffstat (limited to 'Package.swift')
-rw-r--r--Package.swift17
1 files changed, 9 insertions, 8 deletions
diff --git a/Package.swift b/Package.swift
index 2f69b79cb..4c4adbaf0 100644
--- a/Package.swift
+++ b/Package.swift
@@ -4,19 +4,20 @@ import PackageDescription
let package = Package(
name: "SmartDeviceLink-iOS",
products: [
- .library(name: "SmartDeviceLinkSwift", targets: ["SmartDeviceLinkSwift"]),
- .library(name: "SmartDeviceLink", targets: ["SmartDeviceLink"])
-
+ .library(name: "SmartDeviceLink", targets: ["SmartDeviceLink"]),
+ .library(name: "SmartDeviceLinkSwift", targets: ["SmartDeviceLinkSwift"])
],
targets: [
.target(
+ name: "SmartDeviceLink",
+ path: "SmartDeviceLink"
+ ),
+ .target(
name: "SmartDeviceLinkSwift",
path: "SmartDeviceLinkSwift"
+ dependencies: [
+ "SmartDeviceLink"
+ ]
),
- .target(
- name: "SmartDeviceLink",
- path: "SmartDeviceLink"
- )
]
)
-