-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
28 lines (28 loc) · 905 Bytes
/
CMakePresets.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
{
"version": 3,
"configurePresets": [
{
"name": "default-debug",
"displayName": "Default x64 Debug",
"description": "Debug x64 build using the default generator",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
}
},
{
"name": "default-release",
"inherits": "default-debug",
"displayName": "Default x64 Release",
"description": "Release x64 build using the default generator",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
]
}