-
Notifications
You must be signed in to change notification settings - Fork 32
/
CMakePresets.json
111 lines (111 loc) · 3.43 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"version": 3,
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"KDSME_DOCS": "OFF"
}
},
{
"name": "dev-base",
"description": "dev-base",
"hidden": true,
"inherits": "base",
"binaryDir": "${sourceDir}/build-dev",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_TESTING": "ON"
}
},
{
"name": "dev5-external-graphviz",
"description": "Qt5 dev build with external graphviz",
"inherits": "dev-base",
"binaryDir": "${sourceDir}/build-dev5-external-graphviz",
"cacheVariables": {
"KDSME_INTERNAL_GRAPHVIZ": "OFF"
}
},
{
"name": "dev5",
"description": "Qt5 dev build",
"inherits": "dev-base",
"binaryDir": "${sourceDir}/build-dev5",
"cacheVariables": {
"KDSME_INTERNAL_GRAPHVIZ": "ON"
}
},
{
"name": "dev6-external-graphviz",
"description": "Qt6 dev build with external graphviz",
"inherits": "dev-base",
"binaryDir": "${sourceDir}/build-dev6-external-graphviz",
"cacheVariables": {
"KDSME_QT6": "ON",
"KDSME_INTERNAL_GRAPHVIZ": "OFF"
}
},
{
"name": "dev6",
"description": "Qt6 dev build",
"inherits": "dev-base",
"binaryDir": "${sourceDir}/build-dev6",
"cacheVariables": {
"KDSME_QT6": "ON",
"KDSME_INTERNAL_GRAPHVIZ": "ON"
}
},
{
"name": "rel-base",
"description": "rel-base",
"inherits": "base",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"BUILD_TESTING": "OFF"
}
},
{
"name": "rel5-external-graphviz",
"description": "Qt5 release build with external graphviz",
"inherits": "rel-base",
"binaryDir": "${sourceDir}/build-rel5-external-graphviz",
"cacheVariables": {
"KDSME_INTERNAL_GRAPHVIZ": "OFF"
}
},
{
"name": "rel5",
"description": "Qt5 release build",
"inherits": "rel-base",
"binaryDir": "${sourceDir}/build-rel5",
"cacheVariables": {
"KDSME_INTERNAL_GRAPHVIZ": "ON"
}
},
{
"name": "rel6-external-graphviz",
"description": "Qt6 release build with external graphviz",
"inherits": "rel-base",
"binaryDir": "${sourceDir}/build-rel6-external-graphviz",
"cacheVariables": {
"KDSME_QT6": "ON",
"KDSME_INTERNAL_GRAPHVIZ": "OFF"
}
},
{
"name": "rel6",
"description": "Qt6 release build",
"inherits": "rel-base",
"binaryDir": "${sourceDir}/build-rel6",
"cacheVariables": {
"KDSME_QT6": "ON",
"KDSME_INTERNAL_GRAPHVIZ": "ON"
}
}
]
}