-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.json
38 lines (38 loc) · 1 KB
/
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
34
35
36
37
38
{
"id": "flecs.systems.sokol",
"type": "package",
"value": {
"author": "Sander Mertens",
"description": "Flecs module package",
"use": [
"flecs",
"flecs.components.gui",
"flecs.components.input",
"flecs.components.graphics",
"flecs.components.transform",
"flecs.components.geometry",
"flecs.systems.transform",
"flecs.game"
],
"amalgamate": true
},
"lang.c": {
"${os linux}": {
"lib": ["m", "GL", "X11", "Xi", "Xcursor", "dl"]
},
"${os darwin}": {
"ldflags": [
"-framework Cocoa",
"-framework QuartzCore",
"-framework OpenGL"
]
},
"${target em}": {
"ldflags": ["-s USE_WEBGL2=1"],
"${cfg debug}": {
"ldflags": ["-s GL_DEBUG=1"]
},
"embed": ["etc/sokol/shaders"]
}
}
}