-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeSettings.tmpl.json
39 lines (39 loc) · 1.43 KB
/
CMakeSettings.tmpl.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
{
// See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file.
"configurations": [
{
"name": "x64-Debug",
"generator": "Visual Studio 15 2017",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "SM_BUILD_QT_WEBCHANNEL",
"value": "ON"
}
],
"buildRoot": "C:\\build\\playground-msvc141-x64",
"installRoot": "C:\\build\\playground-msvc141-x64\\install",
"cmakeCommandArgs": "-T v141,host=x64 -A x64",
"buildCommandArgs": "-m:8 -v:normal",
"ctestCommandArgs": "-C Debug -VV -j"
},
{
"name": "x64-Release",
"generator": "Visual Studio 14 2015",
"configurationType": "Release",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": [
{
"name": "SM_BUILD_QT_WEBCHANNEL",
"value": "ON"
}
],
"buildRoot": "C:\\build\\playground-msvc141-x64-rls",
"installRoot": "C:\\build\\playground-msvc141-x64-rls\\install",
"cmakeCommandArgs": "-T v140,host=x64 -A x64",
"buildCommandArgs": "-m:8 -v:normal",
"ctestCommandArgs": "-C Release -VV -j"
}
]
}