-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
26 lines (24 loc) · 988 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
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "xcutility",
platforms: [
.iOS(.v11)
],
products: [
.library(name: "XCUtilityFramework", targets: ["XCUtilityFramework"]),
.executable(name: "xcutility", targets: ["xcutility"])
],
dependencies: [
.package(url: "https://github.com/tuist/xcodeproj.git", from: "6.5.0"),
.package(url: "https://github.com/Carthage/Commandant.git", from: "0.15.0"),
.package(url: "https://github.com/jpsim/Yams.git", from: "1.0.1")
],
targets: [
.target(name: "xcutility", dependencies: ["XCUtilityFramework","Commandant"]),
.target(name: "XCUtilityFramework", dependencies: ["xcodeproj","Yams"]),
.testTarget(name: "XCUtilityFrameworkTests", dependencies: ["XCUtilityFramework"])
],
swiftLanguageVersions: [.v5]
)