-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
28 lines (24 loc) · 897 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// swift-tools-version:4.2
// This file is part of the Loobee package.
//
// (c) Andrey Savitsky <contact@qroc.pro>
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
import PackageDescription
var targets: [PackageDescription.Target] = [
.target(name: "CLoobeeCore", dependencies: []),
.target(name: "LoobeeCore", dependencies: ["CLoobeeCore"]),
.target(name: "LoobeeHttp", dependencies: ["LoobeeCore"]),
.testTarget(name: "LoobeeCoreTests", dependencies: ["LoobeeCore"]),
.testTarget(name: "LoobeeHttpTests", dependencies: ["LoobeeHttp"]),
]
let package = Package(
name: "Loobee",
products: [
.library(name: "LoobeeCore", targets: ["LoobeeCore"]),
.library(name: "LoobeeHttp", targets: ["LoobeeHttp"]),
],
targets: targets,
swiftLanguageVersions: [.v4_2]
)