-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakePresets.json.old
63 lines (63 loc) · 1.7 KB
/
CMakePresets.json.old
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
{
"version": 8,
"include": [
"build/generators/CMakePresets.json",
"build/RelWithDebInfo/generators/CMakePresets.json",
"build/Debug/generators/CMakePresets.json"
],
"configurePresets": [
{
"name": "default",
"inherits": [
"conan-default"
],
"installDir": "${sourceDir}/binaries",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/binaries",
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "release",
"inherits": [
"conan-default"
],
"installDir": "${sourceDir}/binaries",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/binaries",
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "debug",
"inherits": [
"conan-debug"
],
"installDir": "${sourceDir}/binaries",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/binaries",
"CMAKE_BUILD_TYPE": "Debug"
}
}
],
"buildPresets": [
{
"name": "debug",
"configurePreset": "debug",
"configuration": "Debug",
"jobs": 32
},
{
"name": "development",
"configurePreset": "default",
"configuration": "RelWithDebInfo",
"jobs": 32
},
{
"name": "release",
"configurePreset": "release",
"configuration": "Release",
"jobs": 32
}
]
}