forked from Ryan-rsm-McKenzie/CommonLibSSE
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCMakePresets.json
More file actions
74 lines (74 loc) · 1.7 KB
/
CMakePresets.json
File metadata and controls
74 lines (74 loc) · 1.7 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
70
71
72
73
74
{
"configurePresets": [
{
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"errors": {
"deprecated": true
},
"hidden": true,
"name": "cmake-dev",
"warnings": {
"deprecated": true,
"dev": true
}
},
{
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake"
},
"hidden": true,
"name": "vcpkg"
},
{
"cacheVariables": {
"CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL",
"VCPKG_TARGET_TRIPLET": "x64-windows-static-md"
},
"hidden": true,
"name": "windows"
},
{
"cacheVariables": {
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /WX /external:anglebrackets /external:W0"
},
"generator": "Visual Studio 16 2019",
"inherits": [
"cmake-dev",
"vcpkg",
"windows"
],
"name": "vs2019-windows-vcpkg"
},
{
"cacheVariables": {
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /WX /external:W0"
},
"generator": "Visual Studio 17 2022",
"inherits": [
"cmake-dev",
"vcpkg",
"windows"
],
"name": "vs2022-windows-vcpkg",
"toolset": "v143"
},
{
"generator": "Visual Studio 18 2026",
"inherits": "vs2022-windows-vcpkg",
"name": "vs2026-windows-vcpkg",
"toolset": "v145"
},
{
"cacheVariables": {
"SKYRIM_SUPPORT_AE": "ON"
},
"binaryDir": "${sourceDir}/buildae",
"inherits": "vs2026-windows-vcpkg",
"name": "vs2026-windows-vcpkg-ae"
}
],
"version": 2
}