forked from Eloquence4/QuickLootEE
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakePresets.json
90 lines (90 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"configurePresets": [
{
"name": "cmake-dev",
"binaryDir": "${sourceDir}/build",
"errors": {
"deprecated": true
},
"hidden": true,
"warnings": {
"deprecated": true,
"dev": true
}
},
{
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": {
"type": "STRING",
"value": "$env{VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake"
},
"VCPKG_OVERLAY_PORTS": {
"type": "STRING",
"value": "${sourceDir}/cmake/ports"
}
},
"hidden": true,
"name": "vcpkg"
},
{
"cacheVariables": {
"CMAKE_MSVC_RUNTIME_LIBRARY": {
"type": "STRING",
"value": "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL"
},
"VCPKG_TARGET_TRIPLET": {
"type": "STRING",
"value": "x64-windows-static-md"
}
},
"hidden": true,
"name": "windows"
},
{
"architecture": {
"strategy": "set",
"value": "x64"
},
"cacheVariables": {
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /WX"
},
"generator": "Visual Studio 17 2022",
"inherits": [
"vcpkg",
"windows"
],
"hidden": true,
"name": "vs2022-windows",
"toolset": "v143"
},
{
"name": "Skyrim",
"binaryDir": "${sourceDir}/build/",
"inherits": [
"cmake-dev",
"vcpkg",
"windows",
"vs2022-windows"
]
}
],
"version": 3,
"buildPresets": [
{
"name": "Release",
"configurePreset": "Skyrim",
"configuration": "Release"
},
{
"name": "RelWithDebInfo",
"displayName": "Release With Debug Info",
"configurePreset": "Skyrim",
"configuration": "Release"
},
{
"name": "Debug",
"configurePreset": "Skyrim",
"configuration": "Debug"
}
]
}