-
-
Notifications
You must be signed in to change notification settings - Fork 459
/
project.json
39 lines (39 loc) · 930 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
34
35
36
37
38
39
{
"id":"flecs",
"type":"package",
"value": {
"author": "Sander Mertens",
"description": "Entity Component System written in C99/C++11",
"amalgamate": true,
"amalgamate-path": "distr"
},
"dependee": {
"lang.c": {
"${cfg sanitize}": {
"defines": ["FLECS_SANITIZE"]
}
},
"lang.cpp": {
"${cfg sanitize}": {
"defines": ["FLECS_SANITIZE"]
}
}
},
"lang.c": {
"${os linux}": {
"lib": ["rt", "pthread", "m"],
"${cfg debug}": {
"export-symbols": true
},
"${cfg sanitize}": {
"export-symbols": true
}
},
"${os windows}": {
"lib": ["ws2_32"]
},
"${cfg sanitize}": {
"defines": ["FLECS_SANITIZE"]
}
}
}