-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPackage.swift
68 lines (62 loc) · 1.99 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: 6.0.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SwiftSDL",
platforms: [
.iOS(.v13),
.tvOS(.v13),
.macOS(.v10_15),
],
products: [
.library(name: "SwiftSDL", targets: ["SwiftSDL"]),
.executable(name: "sdl", targets: ["SwiftSDL-TestBench"])
],
dependencies: [
// .package(url: "https://github.com/apple/swift-algorithms", from: "1.2.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-collections.git", .upToNextMinor(from: "1.1.4")),
],
targets: [
.binaryTarget(
name: "SDL3",
path: "Dependencies/SDL3.xcframework"
),
.systemLibrary(
name: "CSDL3",
path: "Dependencies/CSDL3",
pkgConfig: "sdl3",
providers: [
.apt(["libsdl3-dev"])
]),
.target(
name: "CSDL",
dependencies: [ .target(name: "SDL3") ],
path: "Dependencies/CSDL",
cSettings: [
.headerSearchPath("Sources/SDL3.xcframework/macos-arm64_x86_64/Headers", .when(platforms: [.macOS])),
.headerSearchPath("Sources/SDL3.xcframework/ios-arm64/Headers", .when(platforms: [.iOS])),
.headerSearchPath("Sources/SDL3.xcframework/tvos-arm64/Headers", .when(platforms: [.tvOS])),
]
),
.target(
name: "SwiftSDL",
dependencies: [
.target(name: "CSDL", condition: .when(platforms: [.macOS, .iOS, .tvOS])),
.target(name: "CSDL3", condition: .when(platforms: [.linux, .windows])),
.product(name: "ArgumentParser", package: "swift-argument-parser")
]
),
.executableTarget(
name: "SwiftSDL-TestBench",
dependencies: [
"SwiftSDL",
.product(name: "Collections", package: "swift-collections"),
],
path: "Samples/SwiftSDL-TestBench",
resources: [
.process("Resources/")
]
)
]
)