-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
42 lines (42 loc) · 1.16 KB
/
Copy pathCMakePresets.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"patch": 0
},
"configurePresets": [
{
"name": "dev",
"displayName": "Common developer-focused preset using Ninja Multi-Config",
"description": "Common DevDriver Developer focused options",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/_ninja",
"errors": {
"dev": true
},
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"DD_DP_BUILD_DOCS": "OFF",
"DD_BP_MESSAGELIB_USE_PREBUILT_LIBRARY": "ON",
"DD_OPT_ASSERTS_ENABLE": "ON",
"DD_OPT_ASSERTS_DEBUGBREAK": "OFF"
}
},
{
"name": "dev-vs",
"inherits": "dev",
"displayName": "Common developer-focused preset using Visual Studio 16 2019",
"generator": "Visual Studio 16 2019",
"binaryDir": "${sourceDir}/_vs"
},
{
"name": "dev-vs32",
"inherits": "dev-vs",
"displayName": "Common developer-focused preset using Visual Studio 16 2019 for 32-bit builds",
"binaryDir": "${sourceDir}/_vs32",
"architecture": "Win32"
}
]
}