|
1 | 1 | {
|
2 |
| - "version": 3, |
3 |
| - "configurePresets": [ |
4 |
| - { |
5 |
| - "name": "base", |
6 |
| - "hidden": true, |
7 |
| - "generator": "Ninja", |
8 |
| - "cacheVariables": { |
9 |
| - "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", |
10 |
| - "BUILD_DOCS": "OFF" |
11 |
| - } |
12 |
| - }, |
13 |
| - { |
14 |
| - "name": "dev-base", |
15 |
| - "description": "dev-base", |
16 |
| - "hidden": true, |
17 |
| - "inherits": "base", |
18 |
| - "binaryDir": "${sourceDir}/build-dev", |
19 |
| - "cacheVariables": { |
20 |
| - "CMAKE_BUILD_TYPE": "Debug", |
21 |
| - "BUILD_TESTS": "ON" |
22 |
| - } |
23 |
| - }, |
24 |
| - { |
25 |
| - "name": "dev5-external-graphviz", |
26 |
| - "description": "Qt5 dev build with external graphviz", |
27 |
| - "inherits": "dev-base", |
28 |
| - "binaryDir": "${sourceDir}/build-dev5-external-graphviz", |
29 |
| - "cacheVariables": { |
30 |
| - "WITH_INTERNAL_GRAPHVIZ": "OFF" |
31 |
| - } |
32 |
| - }, |
33 |
| - { |
34 |
| - "name": "dev5", |
35 |
| - "description": "Qt5 dev build", |
36 |
| - "inherits": "dev-base", |
37 |
| - "binaryDir": "${sourceDir}/build-dev5", |
38 |
| - "cacheVariables": { |
39 |
| - "WITH_INTERNAL_GRAPHVIZ": "ON" |
40 |
| - } |
41 |
| - }, |
42 |
| - { |
43 |
| - "name": "dev6-external-graphviz", |
44 |
| - "description": "Qt6 dev build with external graphviz", |
45 |
| - "inherits": "dev-base", |
46 |
| - "binaryDir": "${sourceDir}/build-dev6-external-graphviz", |
47 |
| - "cacheVariables": { |
48 |
| - "BUILD_QT6": "ON", |
49 |
| - "WITH_INTERNAL_GRAPHVIZ": "OFF" |
50 |
| - } |
51 |
| - }, |
52 |
| - { |
53 |
| - "name": "dev6", |
54 |
| - "description": "Qt6 dev build", |
55 |
| - "inherits": "dev-base", |
56 |
| - "binaryDir": "${sourceDir}/build-dev6", |
57 |
| - "cacheVariables": { |
58 |
| - "BUILD_QT6": "ON", |
59 |
| - "WITH_INTERNAL_GRAPHVIZ": "ON" |
60 |
| - } |
61 |
| - }, |
62 |
| - { |
63 |
| - "name": "rel-base", |
64 |
| - "description": "rel-base", |
65 |
| - "inherits": "base", |
66 |
| - "hidden": true, |
67 |
| - "cacheVariables": { |
68 |
| - "CMAKE_BUILD_TYPE": "Release", |
69 |
| - "BUILD_TESTS": "OFF" |
70 |
| - } |
71 |
| - }, |
72 |
| - { |
73 |
| - "name": "rel5-external-graphviz", |
74 |
| - "description": "Qt5 release build with external graphviz", |
75 |
| - "inherits": "rel-base", |
76 |
| - "binaryDir": "${sourceDir}/build-rel5-external-graphviz", |
77 |
| - "cacheVariables": { |
78 |
| - "WITH_INTERNAL_GRAPHVIZ": "OFF" |
79 |
| - } |
80 |
| - }, |
81 |
| - { |
82 |
| - "name": "rel5", |
83 |
| - "description": "Qt5 release build", |
84 |
| - "inherits": "rel-base", |
85 |
| - "binaryDir": "${sourceDir}/build-rel5", |
86 |
| - "cacheVariables": { |
87 |
| - "WITH_INTERNAL_GRAPHVIZ": "ON" |
88 |
| - } |
89 |
| - }, |
90 |
| - { |
91 |
| - "name": "rel6-external-graphviz", |
92 |
| - "description": "Qt6 release build with external graphviz", |
93 |
| - "inherits": "rel-base", |
94 |
| - "binaryDir": "${sourceDir}/build-rel6-external-graphviz", |
95 |
| - "cacheVariables": { |
96 |
| - "BUILD_QT6": "ON", |
97 |
| - "WITH_INTERNAL_GRAPHVIZ": "OFF" |
98 |
| - } |
99 |
| - }, |
100 |
| - { |
101 |
| - "name": "rel6", |
102 |
| - "description": "Qt6 release build", |
103 |
| - "inherits": "rel-base", |
104 |
| - "binaryDir": "${sourceDir}/build-rel6", |
105 |
| - "cacheVariables": { |
106 |
| - "BUILD_QT6": "ON", |
107 |
| - "WITH_INTERNAL_GRAPHVIZ": "ON" |
108 |
| - } |
109 |
| - } |
110 |
| - ] |
| 2 | + "version": 3, |
| 3 | + "configurePresets": [ |
| 4 | + { |
| 5 | + "name": "base", |
| 6 | + "hidden": true, |
| 7 | + "generator": "Ninja", |
| 8 | + "cacheVariables": { |
| 9 | + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", |
| 10 | + "BUILD_DOCS": "OFF" |
| 11 | + } |
| 12 | + }, |
| 13 | + { |
| 14 | + "name": "dev-base", |
| 15 | + "description": "dev-base", |
| 16 | + "hidden": true, |
| 17 | + "inherits": "base", |
| 18 | + "binaryDir": "${sourceDir}/build-dev", |
| 19 | + "cacheVariables": { |
| 20 | + "CMAKE_BUILD_TYPE": "Debug", |
| 21 | + "BUILD_TESTS": "ON" |
| 22 | + } |
| 23 | + }, |
| 24 | + { |
| 25 | + "name": "dev5-external-graphviz", |
| 26 | + "description": "Qt5 dev build with external graphviz", |
| 27 | + "inherits": "dev-base", |
| 28 | + "binaryDir": "${sourceDir}/build-dev5-external-graphviz", |
| 29 | + "cacheVariables": { |
| 30 | + "WITH_INTERNAL_GRAPHVIZ": "OFF" |
| 31 | + } |
| 32 | + }, |
| 33 | + { |
| 34 | + "name": "dev5", |
| 35 | + "description": "Qt5 dev build", |
| 36 | + "inherits": "dev-base", |
| 37 | + "binaryDir": "${sourceDir}/build-dev5", |
| 38 | + "cacheVariables": { |
| 39 | + "WITH_INTERNAL_GRAPHVIZ": "ON" |
| 40 | + } |
| 41 | + }, |
| 42 | + { |
| 43 | + "name": "dev6-external-graphviz", |
| 44 | + "description": "Qt6 dev build with external graphviz", |
| 45 | + "inherits": "dev-base", |
| 46 | + "binaryDir": "${sourceDir}/build-dev6-external-graphviz", |
| 47 | + "cacheVariables": { |
| 48 | + "BUILD_QT6": "ON", |
| 49 | + "WITH_INTERNAL_GRAPHVIZ": "OFF" |
| 50 | + } |
| 51 | + }, |
| 52 | + { |
| 53 | + "name": "dev6", |
| 54 | + "description": "Qt6 dev build", |
| 55 | + "inherits": "dev-base", |
| 56 | + "binaryDir": "${sourceDir}/build-dev6", |
| 57 | + "cacheVariables": { |
| 58 | + "BUILD_QT6": "ON", |
| 59 | + "WITH_INTERNAL_GRAPHVIZ": "ON" |
| 60 | + } |
| 61 | + }, |
| 62 | + { |
| 63 | + "name": "rel-base", |
| 64 | + "description": "rel-base", |
| 65 | + "inherits": "base", |
| 66 | + "hidden": true, |
| 67 | + "cacheVariables": { |
| 68 | + "CMAKE_BUILD_TYPE": "Release", |
| 69 | + "BUILD_TESTS": "OFF" |
| 70 | + } |
| 71 | + }, |
| 72 | + { |
| 73 | + "name": "rel5-external-graphviz", |
| 74 | + "description": "Qt5 release build with external graphviz", |
| 75 | + "inherits": "rel-base", |
| 76 | + "binaryDir": "${sourceDir}/build-rel5-external-graphviz", |
| 77 | + "cacheVariables": { |
| 78 | + "WITH_INTERNAL_GRAPHVIZ": "OFF" |
| 79 | + } |
| 80 | + }, |
| 81 | + { |
| 82 | + "name": "rel5", |
| 83 | + "description": "Qt5 release build", |
| 84 | + "inherits": "rel-base", |
| 85 | + "binaryDir": "${sourceDir}/build-rel5", |
| 86 | + "cacheVariables": { |
| 87 | + "WITH_INTERNAL_GRAPHVIZ": "ON" |
| 88 | + } |
| 89 | + }, |
| 90 | + { |
| 91 | + "name": "rel6-external-graphviz", |
| 92 | + "description": "Qt6 release build with external graphviz", |
| 93 | + "inherits": "rel-base", |
| 94 | + "binaryDir": "${sourceDir}/build-rel6-external-graphviz", |
| 95 | + "cacheVariables": { |
| 96 | + "BUILD_QT6": "ON", |
| 97 | + "WITH_INTERNAL_GRAPHVIZ": "OFF" |
| 98 | + } |
| 99 | + }, |
| 100 | + { |
| 101 | + "name": "rel6", |
| 102 | + "description": "Qt6 release build", |
| 103 | + "inherits": "rel-base", |
| 104 | + "binaryDir": "${sourceDir}/build-rel6", |
| 105 | + "cacheVariables": { |
| 106 | + "BUILD_QT6": "ON", |
| 107 | + "WITH_INTERNAL_GRAPHVIZ": "ON" |
| 108 | + } |
| 109 | + } |
| 110 | + ] |
111 | 111 | }
|
0 commit comments