-
Notifications
You must be signed in to change notification settings - Fork 28
/
Package.swift
69 lines (65 loc) · 1.33 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
64
65
66
67
68
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import Foundation
import PackageDescription
let dir = URL(fileURLWithPath: #file).deletingLastPathComponent().path
var target: [Target] = []
#if os(Linux)
target = [
.target (
name: "CSkiaSharp",
cSettings: [
.headerSearchPath("include"),
],
linkerSettings: [
.unsafeFlags(["-L" + dir])
]
),
.testTarget (
name: "SkiaKitTests",
dependencies: ["SkiaKit"],
linkerSettings: [
.unsafeFlags(["-L" + dir])
]
),
]
#else
target = [
.target (
name: "CSkiaSharp",
dependencies: ["CSkiaSharpBinary"],
cSettings: [
.headerSearchPath("include")
]
),
.binaryTarget (
name: "CSkiaSharpBinary",
url: "https://github.com/migueldeicaza/SkiaKit/releases/download/1.2.5/SkiaSharp.xcframework.zip",
checksum: "6aab048910bdd5a24f3321b2476ab6dd5306c1efb5729776d3a780a806b008b1"
),
.testTarget (
name: "SkiaKitTests",
dependencies: ["SkiaKit"]
),
]
#endif
let package = Package(
name: "SkiaKit",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13)
],
products: [
.library(name: "SkiaKit", targets: ["SkiaKit"])
],
targets: [
.target (
name: "SkiaKit",
dependencies: ["CSkiaSharp"],
cSettings: [
.headerSearchPath("include")
]
)
] + target
)