Add the example target to `Package.swift`.

This commit is contained in:
Marco Burstein 2018-04-14 08:30:20 -07:00
parent 740bad50f8
commit 7b864f1758
1 changed files with 5 additions and 0 deletions

View File

@ -24,5 +24,10 @@ let package = Package(
dependencies: ["SwiftZulipAPI"],
path: "tests/SwiftZulipAPI"
),
Target.target(
name: "SwiftZulipAPIExample",
dependencies: ["SwiftZulipAPI"],
path: "example/SwiftZulipAPI"
),
]
)