-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
CMakeUserPresets.json
134 lines (134 loc) · 3.12 KB
/
CMakeUserPresets.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"version": 3,
"configurePresets": [
{
"name": "Qt-Debug",
"inherits": "Qt-Default",
"binaryDir": "${sourceDir}/out/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-DQT_QML_DEBUG"
},
"environment": {
"QML_DEBUG_ARGS": "-qmljsdebugger=file:{9e6fb4f7-6ae1-4f04-a51f-c14b154e3e41},block"
}
},
{
"name": "Qt-Release",
"inherits": "Qt-Default",
"binaryDir": "${sourceDir}/out/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"hidden": true,
"name": "Qt-Default",
"inherits": "6.8.0_msvc2022_64",
"vendor": {
"qt-project.org/Default": {
"checksum": "DBTqMydOw2UMLXPo9VKLNZVd1O4="
}
}
},
{
"name": "Qt-Debug-Linux",
"inherits": "Qt-Default",
"binaryDir": "${sourceDir}/out/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_FLAGS": "-DQT_QML_DEBUG",
"CMAKE_SYSTEM_NAME": "Linux"
},
"environment": {
"QML_DEBUG_ARGS": "-qmljsdebugger=file:{9e6fb4f7-6ae1-4f04-a51f-c14b154e3e41},block"
}
},
{
"name": "Qt-Release-Linux",
"inherits": "Qt-Default",
"binaryDir": "${sourceDir}/out/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_SYSTEM_NAME": "Linux"
}
},
{
"hidden": true,
"name": "6.4.0_msvc2019_64",
"inherits": "Qt",
"environment": {
"QTDIR": "C:/Qt/6.4.0/msvc2019_64"
},
"architecture": {
"strategy": "external",
"value": "x64"
},
"generator": "Ninja",
"vendor": {
"qt-project.org/Version": {
"checksum": "R9aY2WL1yeElTJg9PU9UKZZ4DwU="
}
}
},
{
"hidden": true,
"name": "6.5.1_msvc2019_64",
"inherits": "Qt",
"environment": {
"QTDIR": "C:/Qt/6.5.1/msvc2019_64"
},
"architecture": {
"strategy": "external",
"value": "x64"
},
"generator": "Ninja",
"vendor": {
"qt-project.org/Version": {
"checksum": "2mV27zLzBlZ3kWw44NwwtPiyBj4="
}
}
},
{
"hidden": true,
"name": "6.6.1_msvc2019_64",
"inherits": "Qt",
"environment": {
"QTDIR": "C:/Qt/6.6.1/msvc2019_64"
},
"architecture": {
"strategy": "external",
"value": "x64"
},
"generator": "Ninja",
"vendor": {
"qt-project.org/Version": {
"checksum": "tvdHB+wfcuhVOf4qLKZexdSJ9Rs="
}
}
},
{
"hidden": true,
"name": "6.8.0_msvc2022_64",
"inherits": "Qt",
"environment": {
"QTDIR": "C:/Qt/6.8.0/msvc2022_64"
},
"architecture": {
"strategy": "external",
"value": "x64"
},
"generator": "Ninja",
"vendor": {
"qt-project.org/Version": {
"checksum": "JOQDTc5R1RCV6VYy8Lbs1Uw/E8w="
}
}
}
],
"vendor": {
"qt-project.org/Presets": {
"checksum": "HaS3Ps6r1b6QM62UokmAuGxdnV0="
}
}
}