-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCMakePresets.json
More file actions
44 lines (44 loc) · 1.12 KB
/
CMakePresets.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
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
{
"version": 3,
"configurePresets": [
{
"name": "windows-msvc-debug",
"displayName": "Windows MSVC x64 Debug",
"generator": "Ninja",
"binaryDir": "${sourceDir}/x64-Debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"environment": {
"VSCMD_ARG_TGT_ARCH": "x64",
"CMAKE_PREFIX_PATH": "D:/lib/boost"
}
},
{
"name": "windows-msvc-release",
"displayName": "Windows MSVC x64 RelWithDebInfo",
"generator": "Ninja",
"binaryDir": "${sourceDir}/x64-Release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
},
"environment": {
"VSCMD_ARG_TGT_ARCH": "x64",
"CMAKE_PREFIX_PATH": "D:/lib/boost"
}
},
{
"name": "windows-msvc-release-clean",
"displayName": "Windows MSVC x64 Release",
"generator": "Ninja",
"binaryDir": "${sourceDir}/x64-Release-clean",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
},
"environment": {
"VSCMD_ARG_TGT_ARCH": "x64",
"CMAKE_PREFIX_PATH": "D:/lib/boost"
}
}
]
}