-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeSettings.json
42 lines (42 loc) · 1.26 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
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Visual Studio 16 2019 Win64",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\build\\vs\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "-D CMAKE_C_COMPILER=cl.exe -D CMAKE_CXX_COMPILER=cl.exe",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"variables": [
{
"name": "CMAKE_BUILD_TYPE",
"value": "Debug",
"type": "STRING"
}
],
"intelliSenseMode": "windows-msvc-x64"
},
{
"name": "x64-Release",
"generator": "Visual Studio 16 2019 Win64",
"configurationType": "Release",
"buildRoot": "${projectDir}\\build\\vs\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "-D CMAKE_C_COMPILER=cl.exe -D CMAKE_CXX_COMPILER=cl.exe",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "CMAKE_BUILD_TYPE",
"value": "Release",
"type": "STRING"
}
],
"intelliSenseMode": "windows-msvc-x64"
}
]
}