mirror of
https://github.com/datatheorem/TrustKit.git
synced 2026-05-17 12:50:35 +00:00
30 lines
666 B
Swift
30 lines
666 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "TrustKit",
|
|
platforms: [
|
|
.iOS(.v12),
|
|
.macOS(.v10_13),
|
|
.tvOS(.v12),
|
|
.watchOS(.v4)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "TrustKit",
|
|
targets: ["TrustKit"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "TrustKit",
|
|
path: "TrustKit",
|
|
resources: [.process("PrivacyInfo.xcprivacy")],
|
|
publicHeadersPath: "public",
|
|
cSettings: [.define("NS_BLOCK_ASSERTIONS", to: "1", .when(configuration: .release))]
|
|
),
|
|
]
|
|
)
|