forked from srcML/srcML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
34 lines (34 loc) · 859 Bytes
/
CMakePresets.json
File metadata and controls
34 lines (34 loc) · 859 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
34
{
"version": 8,
"cmakeMinimumRequired": {
"major": 3,
"minor": 28,
"patch": 0
},
"include": [
"presets/CMakeBasePresets.json",
"presets/CMakeUbuntuPresets.json",
"presets/CMakeRPMPresets.json",
"presets/CMakeMacOSPresets.json",
"presets/CMakeMSVCPresets.json"
],
"configurePresets": [
{
"name": "ci-clang-trace",
"displayName": "Clang Trace",
"hidden": true,
"description": "Default build options for Clang trace",
"cacheVariables": {
"CMAKE_C_FLAGS_INIT": "-ftime-trace",
"CMAKE_CXX_FLAGS_INIT": "-ftime-trace"
}
},
{
"name": "ci-clang-ccache",
"inherits": ["ci-clang", "ci-ccache"],
"hidden": true,
"displayName": "Clang Release ccache",
"description": "Default build options for Clang release with ccache"
}
]
}