forked from flecs-hub/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
30 lines (30 loc) · 839 Bytes
/
project.json
File metadata and controls
30 lines (30 loc) · 839 Bytes
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
{
"id": "flecs.explorer",
"type": "application",
"value": {
"use": [
"flecs",
"flecs.components.transform",
"flecs.components.graphics",
"flecs.components.geometry",
"flecs.components.physics",
"flecs.components.gui",
"flecs.systems.physics",
"flecs.systems.transform",
"flecs.systems.sokol",
"flecs.game"
],
"standalone": true
},
"lang.c": {
"defines": ["FLECS_SCRIPT_MATH"],
"${os linux}": {
"lib": ["rt", "pthread", "m"]
},
"${target em}": {
"defines": ["FLECS_SOFT_ASSERT", "FLECS_KEEP_ASSERT"],
"ldflags": ["-sSTACK_SIZE=1000000", "-Wl,-u,ntohs"],
"embed": ["etc/assets"]
}
}
}