summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Gluck <justin.gluck@livio.io>2019-05-06 12:10:18 -0400
committerJustin Gluck <justin.gluck@livio.io>2019-05-06 12:10:18 -0400
commitee2980e427e4fcf98faddff9da63d62c5959dba0 (patch)
tree39e9a7dd308a309a593fae96d3ef043d2d923679
parentbb64813dbe9e031e4513e9765a824a62d102b9d4 (diff)
downloadsdl_ios-ee2980e427e4fcf98faddff9da63d62c5959dba0.tar.gz
testing
-rw-r--r--Package.swift13
1 files changed, 7 insertions, 6 deletions
diff --git a/Package.swift b/Package.swift
index dea1bf10c..2f69b79cb 100644
--- a/Package.swift
+++ b/Package.swift
@@ -4,18 +4,19 @@ import PackageDescription
let package = Package(
name: "SmartDeviceLink-iOS",
products: [
- .library(name: "SmartDeviceLink", targets: ["SmartDeviceLink"]),
- .library(name: "SmartDeviceLinkSwift", targets: ["SmartDeviceLinkSwift"])
+ .library(name: "SmartDeviceLinkSwift", targets: ["SmartDeviceLinkSwift"]),
+ .library(name: "SmartDeviceLink", targets: ["SmartDeviceLink"])
+
],
targets: [
.target(
- name: "SmartDeviceLink",
- path: "SmartDeviceLink"
- ),
- .target(
name: "SmartDeviceLinkSwift",
path: "SmartDeviceLinkSwift"
),
+ .target(
+ name: "SmartDeviceLink",
+ path: "SmartDeviceLink"
+ )
]
)