We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28adacf + 1d79245 commit 560e484Copy full SHA for 560e484
2 files changed
.gitignore
@@ -8,3 +8,5 @@ settings.ini
8
CMakeUserPresets.json
9
.cache/
10
.idea/
11
+.build/
12
+.swiftpm/
Package.swift
@@ -0,0 +1,35 @@
1
+// swift-tools-version: 5.9
2
+// The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
4
+import PackageDescription
5
6
+let package = Package(
7
+ name: "box2d",
+ products: [
+ .library(
+ targets: ["box2d"]
+ )
13
+ ],
14
+ targets: [
15
+ .target(
16
17
+ path: ".",
18
+ exclude: [
19
+ "shared/",
20
+ "samples/",
21
+ "docs",
22
+ "benchmark/",
23
+ "extern/",
24
+ "test/",
25
+ "build.bat",
26
+ "build.sh",
27
+ "build_emscripten.sh",
28
+ "CMakeLists.txt",
29
+ "deploy_docs.sh",
30
+ "LICENSE"
31
32
+ publicHeadersPath: "include"
33
34
+ ]
35
+)
0 commit comments