forked from praydog/REFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
59 lines (59 loc) · 1.86 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
{
"version": 2,
"configurePresets": [
{
"name": "vs2019",
"displayName": "Visual Studio 2019 - amd64",
"description": "Using compilers for Visual Studio 16 2019 (x64 architecture)",
"generator": "Visual Studio 16 2019",
"toolset": "host=x64",
"architecture": "x64",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/"
}
},
{
"name": "vs2022",
"displayName": "Visual Studio 2022 - amd64",
"description": "Using compilers for Visual Studio 17 2022 (x64 architecture)",
"generator": "Visual Studio 17 2022",
"toolset": "host=x64",
"architecture": "x64",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/"
}
}
],
"buildPresets": [
{
"name": "Release 2019",
"description": "",
"displayName": "Release",
"configuration": "Release",
"configurePreset": "vs2019"
},
{
"name": "RelWithDebInfo 2019",
"description": "",
"displayName": "RelWithDebInfo",
"configuration": "RelWithDebInfo",
"configurePreset": "vs2019"
},
{
"name": "Release 2022",
"description": "",
"displayName": "Release",
"configuration": "Release",
"configurePreset": "vs2022"
},
{
"name": "RelWithDebInfo 2022",
"description": "",
"displayName": "RelWithDebInfo",
"configuration": "RelWithDebInfo",
"configurePreset": "vs2022"
}
]
}