-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeSettings.json
78 lines (78 loc) · 2.21 KB
/
CMakeSettings.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"configurations": [
{
"name": "x64-Meduza-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "cmake -DDEFINE_EDITOR=ON",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"variables": [
{
"name": "DEFINE_EDITOR",
"value": "true",
"type": "BOOL"
}
],
"args": [ "/Z7", "/MDd", "cl", "/EHsc", "/W4", "/D_DEBUG" ]
},
{
"name": "x64-Meduza-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "cmake -DDEFINE_EDITOR=ON",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "DEFINE_EDITOR",
"value": "True",
"type": "BOOL"
}
],
"args": [ "/ZI" ]
},
{
"name": "x64-Game-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "cmake -DDEFINE_EDITOR=OFF",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "DEFINE_EDITOR",
"value": "False",
"type": "BOOL"
}
]
},
{
"name": "x64-Game-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "cmake -DDEFINE_EDITOR=OFF",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "DEFINE_EDITOR",
"value": "OFF",
"type": "UNINITIALIZED"
}
]
}
]
}