-
Notifications
You must be signed in to change notification settings - Fork 7
/
CMakeUserPresets.json
78 lines (78 loc) · 2.2 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
{
"version": 3,
"configurePresets": [
{
"name": "base-6.5.1-macos",
"hidden": true,
"cacheVariables": {
"CMAKE_PREFIX_PATH": "$env{HOME}/Qt/6.5.1/macos"
},
"inherits": [
"base-ninja",
"base-macos"
],
"environment": {
"PATH": "$env{HOME}/Qt/Tools/Ninja/:$penv{PATH}"
}
},
{
"name": "base-6.5.1-linux",
"hidden": true,
"cacheVariables": {
"CMAKE_PREFIX_PATH": "$env{HOME}/Qt/6.5.1/gcc_64"
},
"inherits": [
"base-ninja",
"base-linux"
]
},
{
"name": "debug-6.5.1-macos",
"binaryDir": "${sourceDir}/build-debug-6.5.1-macos",
"inherits": [
"base-6.5.1-macos",
"base-debug"
]
},
{
"name": "release-6.5.1-macos",
"binaryDir": "${sourceDir}/build-release-6.5.1-macos",
"inherits": [
"base-6.5.1-macos",
"base-release"
]
},
{
"name": "profile-6.5.1-macos",
"binaryDir": "${sourceDir}/build-profile-6.5.1-macos",
"inherits": [
"base-6.5.1-macos",
"base-profile"
]
},
{
"name": "debug-6.5.1-linux",
"binaryDir": "${sourceDir}/build-debug-6.5.1-linux",
"inherits": [
"base-6.5.1-linux",
"base-debug"
]
},
{
"name": "release-6.5.1-linux",
"binaryDir": "${sourceDir}/build-release-6.5.1-linux",
"inherits": [
"base-6.5.1-linux",
"base-release"
]
},
{
"name": "profile-6.5.1-linux",
"binaryDir": "${sourceDir}/build-profile-6.5.1-linux",
"inherits": [
"base-6.5.1-linux",
"base-profile"
]
}
]
}