forked from macroquest/macroquest
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCMakePresets.json
More file actions
69 lines (69 loc) · 2.14 KB
/
CMakePresets.json
File metadata and controls
69 lines (69 loc) · 2.14 KB
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
{
"version": 9,
"cmakeMinimumRequired": {
"major": 3,
"minor": 30,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Visual Studio 17 2022",
"toolset": "v143",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"MQ_CUSTOM_PLUGINS_FILE": "custom_plugins.cmake"
},
"environment": {
"VCPKG_ROOT": "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\vcpkg"
}
},
{
"name": "live",
"displayName": "Live (x64)",
"description": "Configuration for live servers (x64 architecture)",
"inherits": "base",
"architecture": {
"value": "x64",
"strategy": "set"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows-static"
}
},
{
"name": "emu",
"displayName": "Emu (Win32)",
"description": "Configuration for emu servers (Win32 architecture)",
"inherits": "base",
"architecture": {
"value": "Win32",
"strategy": "set"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x86-windows-static"
}
},
{
"name": "live-sln",
"displayName": "Rebuild Live/Test Solution",
"description": "Rebuild the live/test solution for use in Visual Studio",
"binaryDir": "${sourceDir}/build/solution",
"inherits": "live",
"cacheVariables": {
"MQ_REGENERATE_SOLUTION": "ON"
}
},
{
"name": "emu-sln",
"displayName": "Rebuild Emu Solution",
"description": "Rebuild the emu solution for use in Visual Studio",
"binaryDir": "${sourceDir}/build/solution",
"inherits": "emu",
"cacheVariables": {
"MQ_REGENERATE_SOLUTION": "ON"
}
}
]
}