mirror of
https://github.com/encounter/JSONAPI.git
synced 2026-03-30 11:18:38 -07:00
31 lines
704 B
Swift
31 lines
704 B
Swift
// swift-tools-version:4.2
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "JSONAPI",
|
|
products: [
|
|
.library(
|
|
name: "JSONAPI",
|
|
targets: ["JSONAPI"]),
|
|
.library(
|
|
name: "JSONAPITestLib",
|
|
targets: ["JSONAPITestLib"])
|
|
],
|
|
dependencies: [
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "JSONAPI",
|
|
dependencies: []),
|
|
.target(
|
|
name: "JSONAPITestLib",
|
|
dependencies: ["JSONAPI"]),
|
|
.testTarget(
|
|
name: "JSONAPITests",
|
|
dependencies: ["JSONAPITestLib"])
|
|
],
|
|
swiftLanguageVersions: [.v4_2]
|
|
)
|