-
Notifications
You must be signed in to change notification settings - Fork 38
/
CMakePresets.json
36 lines (36 loc) · 983 Bytes
/
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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "Default Config",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "default-with-tests",
"inherits": ["default"],
"displayName": "Default with tests",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"NANOARROW_BUILD_TESTS": "ON"
}
},
{
"name": "default-with-benchmarks",
"inherits": ["default"],
"displayName": "Default with benchmarks",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"NANOARROW_BUILD_BENCHMARKS": "ON"
}
}
]
}