-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuildzri.config.json
More file actions
40 lines (40 loc) · 724 Bytes
/
buildzri.config.json
File metadata and controls
40 lines (40 loc) · 724 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
31
32
33
34
35
36
37
38
39
40
{
"std": "c++17",
"name": "BuildZri Sample",
"version": "1.0.1",
"output": "./bin/bzsample-${BZ_OS}_${BZ_ARCH}",
"include": {
"*": [
"."
]
},
"source": {
"*": [
"*.cpp",
"add/*.cpp",
"subtract/*.cpp"
],
"linux": [
"platform/linux.cpp"
]
},
"definitions": {
"*": [
"BZ_TESTV=1",
"BZ_PROJ_VERSION=\\\"${BZ_VERSION}\\\""
]
},
"options": {
"linux": [
"-Os"
],
"darwin": [
"-Os"
],
"windows": [
"/EHsc",
"/Os",
"/link"
]
}
}