-
Notifications
You must be signed in to change notification settings - Fork 34
/
CMakePresets.json
55 lines (55 loc) · 1.53 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
48
49
50
51
52
53
54
55
{
"version": 6,
"configurePresets": [
{
"name": "base",
"toolchainFile": "${sourceDir}/cmake/toolchain/clang-16_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": "release-wasmedge",
"binaryDir": "cmake-build-release-wasmedge",
"inherits": "base-release",
"cacheVariables": {
"WASM_COMPILER": "WasmEdge"
}
},
{
"name": "debug-wavm",
"binaryDir": "cmake-build-debug-wavm",
"inherits": "base-debug",
"cacheVariables": {
"WASM_COMPILER": "WAVM"
}
}
]
}