forked from hampusborgos/rme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
46 lines (46 loc) · 1.24 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
36
37
38
39
40
41
42
43
44
45
46
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 22,
"patch": 0
},
"configurePresets": [
{
"name": "windows-release",
"displayName": "Windows - Release",
"description": "Sets compilers, build and install directory and set build type as release",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": {
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"type": "FILEPATH"
},
"VCPKG_TARGET_TRIPLET": "x64-windows",
"CMAKE_BUILD_TYPE": "Release",
"wxWidgets_LIBRARIES": "D:/a/rme/rme/build/windows-release/vcpkg_installed/x64-windows/lib/",
"wxWidgets_USE_FILE": "D:/a/rme/rme/vcpkg/ports/wxwidgets/vcpkg-cmake-wrapper.cmake "
},
"architecture": {
"value": "x64",
"strategy": "external"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
}
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
],
"buildPresets": [
{
"name": "windows-release",
"configurePreset": "windows-release"
}
]
}