-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
32 lines (27 loc) · 1.17 KB
/
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
29
30
31
32
// swift-tools-version: 5.7.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Voir",
platforms: [.iOS(.v14)],
products: [
.library(name: "Voir", type: .static, targets: ["Voir"]),
.library(name: "VoirBuilder", type: .static, targets: ["VoirBuilder"]),
.library(name: "VoirHooker", type: .dynamic, targets: ["VoirHooker"]),
.executable(name: "TemplateInstaller", targets: ["TemplateInstaller"])
],
dependencies: [
// .package(url: "https://github.com/robb/Cartography", from: "4.0.0")
],
targets: [
.target(name: "Voir", dependencies: [.target(name: "VoirBuilder")]),
.testTarget(name: "VoirTests", dependencies: [.target(name: "Voir")]),
.target(name: "VoirBuilder", dependencies: [
.target(name: "VoirHooker")
// .product(name: "Cartography", package: "Cartography")
]),
.testTarget(name: "VoirBuilderTests", dependencies: [.target(name: "VoirBuilder")]),
.target(name: "VoirHooker"),
.executableTarget(name: "TemplateInstaller")
]
)