From 7c523982107255319e1823150be2855bfddbd475 Mon Sep 17 00:00:00 2001 From: Justin Gluck Date: Thu, 9 May 2019 10:25:26 -0400 Subject: adding SDLswift as a Dependency --- Package.swift | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'Package.swift') 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" - ) ] ) - -- cgit v1.2.1