-
Notifications
You must be signed in to change notification settings - Fork 17
/
project.json
33 lines (33 loc) · 886 Bytes
/
project.json
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
{
"id": "tower_defense",
"type": "application",
"value": {
"use": [
"flecs",
"flecs.components.transform",
"flecs.components.graphics",
"flecs.components.geometry",
"flecs.components.physics",
"flecs.components.gui",
"flecs.components.input",
"flecs.systems.transform",
"flecs.systems.physics",
"flecs.systems.sokol",
"flecs.game"
],
"language": "c++",
"use-bundle": ["flecs.hub:default"],
"standalone": true
},
"bundle": {
"repositories": {
"flecs.hub": "https://github.com/flecs-hub/flecs-hub"
}
},
"lang.c": {
"${target em}": {
"ldflags": ["-sSTACK_SIZE=1000000", "-Wl,-u,ntohs"],
"embed": ["etc/assets"]
}
}
}