This repository was archived by the owner on Aug 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
43 lines (41 loc) · 1.3 KB
/
Copy pathPackage.swift
File metadata and controls
43 lines (41 loc) · 1.3 KB
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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "MySGBGame",
platforms: [.macOS(.v14)],
products: [
.library(
name: "MySGBGame",
type: .dynamic,
targets: ["MySGBGame"]
),
.executable(
name: "exec",
targets: ["exec"]
),
],
dependencies: [
.package(url: "https://github.com/johnsusek/SwiftGodotBuilder", revision: "a7137473c42dc98c82c283ef2eda182ed5b1835a"),
.package(url: "https://github.com/migueldeicaza/SwiftGodot", revision: "a1af0de831a22a2f1d5d8b4221d9df2fdd12978f"),
.package(url: "https://github.com/migueldeicaza/SwiftGodotKit", revision: "7f59a1ad97d243a071b548bed7ff573449c82af5"),
],
targets: [
.target(
name: "MySGBGame",
dependencies: [
.product(name: "SwiftGodot", package: "SwiftGodot"),
.product(name: "SwiftGodotBuilder", package: "SwiftGodotBuilder"),
]
),
.executableTarget(
name: "exec",
dependencies: [
"MySGBGame",
.product(name: "SwiftGodotKit", package: "SwiftGodotKit"),
],
resources: [
.copy("Resources"),
]
),
]
)