forked from qdrvm/kagome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
47 lines (47 loc) · 1.29 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
47
{
"version": 6,
"configurePresets": [
{
"name": "base",
"toolchainFile": "${sourceDir}/cmake/toolchain/clang-15_cxx20.cmake",
"generator": "Ninja",
"hidden": true
},
{
"name": "base-debug",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"TESTING": "ON",
"HUNTER_CONFIGURATION_TYPES": "Debug"
},
"hidden": true
},
{
"name": "base-release",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"TESTING": "OFF",
"HUNTER_CONFIGURATION_TYPES": "Release"
},
"hidden": true
},
{
"name": "debug-wasmedge",
"binaryDir": "cmake-build-debug-wasmedge",
"inherits": "base-debug",
"cacheVariables": {
"WASM_COMPILER": "WasmEdge"
}
},
{
"name": "debug-wavm",
"binaryDir": "cmake-build-debug-wavm",
"inherits": "base-debug",
"cacheVariables": {
"WASM_COMPILER": "WAVM"
}
}
]
}