-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeSettings.json
33 lines (33 loc) · 923 Bytes
/
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
{
"configurations": [
{
"buildCommandArgs": "",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"cmakeCommandArgs": "/std:c++17",
"configurationType": "RelWithDebInfo",
"ctestCommandArgs": "",
"generator": "Ninja",
"inheritEnvironments": [ "msvc_x64_x64" ],
"installRoot": "${projectDir}\\out\\install\\${name}",
"name": "x64_debug",
"variables": [
{
"name": "GLFW_BUILD_DOCS",
"value": "True",
"type": "BOOL"
}
]
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "Release",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "/std:c++17",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ]
}
]
}