-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCMakePresets.json
More file actions
48 lines (48 loc) · 1.26 KB
/
CMakePresets.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"version": 8,
"$schema": "https://cmake.org/cmake/help/latest/_downloads/3e2d73bff478d88a7de0de736ba5e361/schema.json",
"configurePresets": [
{
"name": "ci-msvc",
"displayName": "CI MSVC",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_COMPILE_WARNING_AS_ERROR": "ON",
"BUILD_SHARED_LIBS": "OFF",
"DD_TRACE_STATIC_CRT": "1",
"DD_TRACE_BUILD_TESTING": "ON",
"DD_TRACE_ENABLE_SANITIZE": "ON"
}
},
{
"name": "ci-codeql",
"displayName": "CI CodeQL",
"cacheVariables": {
"CMAKE_POLICY_VERSION_MINIMUM": "3.5"
}
},
{
"name": "dev",
"displayName": "Development",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"DD_TRACE_ENABLE_SANITIZE": "ON",
"DD_TRACE_BUILD_TESTING": "ON",
"DD_TRACE_BUILD_EXAMPLES": "ON",
"DD_TRACE_BUILD_TOOLS": "ON",
"DD_TRACE_BUILD_FUZZERS": "OFF"
}
},
{
"name": "ci-clang",
"displayName": "CI Clang",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"DD_TRACE_ENABLE_SANITIZE": "ON",
"DD_TRACE_BUILD_TOOLS": "ON",
"DD_TRACE_BUILD_TESTING": "ON"
}
}
]
}