File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,5 @@ settings.ini
8
8
CMakeUserPresets.json
9
9
.cache /
10
10
.idea /
11
+ .build /
12
+ .swiftpm /
Original file line number Diff line number Diff line change
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 " ,
8
+ products: [
9
+ . library(
10
+ name: " box2d " ,
11
+ targets: [ " box2d " ]
12
+ )
13
+ ] ,
14
+ targets: [
15
+ . target(
16
+ name: " box2d " ,
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
+ )
You can’t perform that action at this time.
0 commit comments