forked from kuafuwang/LspCpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
33 lines (33 loc) · 938 Bytes
/
CMakePresets.json
File metadata and controls
33 lines (33 loc) · 938 Bytes
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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "ci/default",
"description": "Default profile for CI to build. uses vcpkg, C++17 and vcpkg rapidjson",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "release",
"USE_SYSTEM_RAPIDJSON": "true",
"LSPCPP_USE_CPP17": "true",
"LSPCPP_SUPPORT_BOEHM_GC": "$env{LSPCPP_SUPPORT_BOEHM_GC}",
"VCPKG_MANIFEST_FEATURES": "$env{LSPCPP_CI_VCPKG_FEATURES}",
"USE_EXTERNAL_IXWEBSOCKET": "true",
"USE_EXTERNAL_ASIO": "true",
"LSPCPP_STANDALONE_ASIO": "true",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
},
"binaryDir": "${sourceDir}/cmake-build-ci"
}
],
"buildPresets": [
{
"name": "ci/default",
"configurePreset": "ci/default"
}
]
}