-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeUserPresets.json
42 lines (42 loc) · 1.32 KB
/
CMakeUserPresets.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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 23,
"patch": 0
},
"configurePresets": [
{
"name": "ninja-multi-default-custom",
"displayName": "Ninja Multi-Config Custom",
"binaryDir": "${sourceDir}/builds/${presetName}",
"generator": "Ninja Multi-Config",
"inherits": "ninja-multi-default",
"environment": {
"VCPKG_ROOT": "/home/xlauko1/src/vcpkg",
"Z3_DIR": "/home/xlauko1/opt/z3",
"LLVM_INSTALL_DIR": "/usr/lib/llvm-13/"
}
}
],
"buildPresets": [
{
"name": "ninja-rel-custom",
"configurePreset": "ninja-multi-default-custom",
"displayName": "Build ninja-multi-rel-custom",
"configuration": "Release"
},
{
"name": "ninja-rel-with-deb-custom",
"configurePreset": "ninja-multi-default-custom",
"displayName": "Build ninja-multi-rel-with-deb-custom",
"configuration": "RelWithDebInfo"
},
{
"name": "ninja-deb-custom",
"configurePreset": "ninja-multi-default-custom",
"displayName": "Build ninja-multi-deb-custom",
"configuration": "Debug"
}
]
}