-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
63 lines (57 loc) · 1.68 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
// Starting with Xcode 12, we don't need to depend on our own libxml2 target
#if swift(>=5.3) && !os(Linux)
let dependencies: [Target.Dependency] = []
#else
let dependencies: [Target.Dependency] = ["libxml2"]
#endif
#if swift(>=5.2) && !os(Linux)
let pkgConfig: String? = nil
#else
let pkgConfig = "libxml-2.0"
#endif
#if swift(>=5.2)
let provider: [SystemPackageProvider] = [
.apt(["libxml2-dev"])
]
#else
let provider: [SystemPackageProvider] = [
.apt(["libxml2-dev"]),
.brew(["libxml2"])
]
#endif
let package = Package(
name: "ContentstackUtils",
platforms: [.macOS(.v10_13),
.iOS(.v11),
.tvOS(.v11),
.watchOS(.v4)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "ContentstackUtils",
targets: ["ContentstackUtils"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
.systemLibrary(
name: "libxml2",
path: "Modules",
pkgConfig: pkgConfig,
providers: provider
),
.target(
name: "ContentstackUtils",
dependencies: dependencies,
path: "Sources"),
.testTarget(
name: "ContentstackUtilsTests",
dependencies: ["ContentstackUtils"]),
],
swiftLanguageVersions: [.v5]
)