-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCMakePresets.json
37 lines (37 loc) · 1018 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
29
30
31
32
33
34
35
36
37
{
"version": 2,
"configurePresets": [
{
"name": "windows-default",
"displayName": "Windows x64",
"description": "Target Windows with the Visual Studio development environment.",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": {
"value": "${sourceDir}/out/install/${presetName}",
"type": "FILEPATH"
}
},
"vendor": { "microsoft.com/VisualStudioSettings/CMake/1.0": { "hostOS": [ "Windows" ] } }
}
],
"buildPresets": [
{
"name": "windows-debug",
"displayName": "Debug",
"configurePreset": "windows-default",
"configuration": "Debug"
},
{
"name": "windows-relwithdebinfo",
"displayName": "RelWithDebInfo",
"configurePreset": "windows-default",
"configuration": "RelWithDebInfo"
}
]
}