-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
35 lines (35 loc) · 1.23 KB
/
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
{
"version": 2,
"configurePresets": [
{
"name": "debug_linux",
"displayName": "Debug (Linux)",
"binaryDir": "${sourceDir}/build/debug",
"generator": "Unix Makefiles",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"VCPKG_INSTALLED_DIR": "${sourceDir}/vcpkg_installed",
"CMAKE_TOOLCHAIN_FILE": {
"value": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"type": "FILEPATH"
}
}
},
{
"name": "debug_windows",
"displayName": "Debug (Windows)",
"binaryDir": "${sourceDir}/build/debug",
"generator": "Visual Studio 17 2022",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"VCPKG_INSTALLED_DIR": "${sourceDir}/vcpkg_installed",
"CMAKE_TOOLCHAIN_FILE": {
"value": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"type": "FILEPATH"
}
}
}
]
}