forked from ConnerRia/POISE-Stagger-Overhaul-SKSE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
87 lines (87 loc) · 2.08 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
{
"configurePresets": [
{
"name": "common",
"hidden": true,
"cacheVariables": {
"CMAKE_CXX_STANDARD_REQUIRED": "ON",
"ENABLE_SKYRIM_AE": "$penv{ENABLE_SKYRIM_AE}",
"MO2_MODS_DIR": "$penv{MO2_MODS_DIR}"
},
"errors": {
"deprecated": true
},
"warnings": {
"deprecated": true,
"dev": true
}
},
{
"name": "visual-studio-2022",
"hidden": true,
"inherits": [ "common" ],
"architecture": { "value": "x64", "strategy": "set" },
"generator": "Visual Studio 17 2022",
"toolset": "v143",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "cl.exe",
"CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreaded$<$<CONFIG:Debug>:Debug>",
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /WX /external:anglebrackets /external:W0"
}
},
{
"name": "NMake",
"hidden": true,
"inherits": [ "common" ],
"generator": "NMake Makefiles",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "cl.exe",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "release",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "debug",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release-MSVC",
"inherits": [
"release",
"visual-studio-2022"
],
"description": "Optimized release build",
"binaryDir": "${sourceDir}/build/release",
"installDir": "${sourceDir}/install/release"
},
{
"name": "Debug-MSVC",
"inherits": [
"debug",
"visual-studio-2022"
],
"description": "Debug build for testing",
"binaryDir": "${sourceDir}/build/debug",
"installDir": "${sourceDir}/install/debug"
},
{
"name": "compiledb",
"inherits": [
"debug",
"NMake"
],
"description": "Generate compiledb for dev work",
"binaryDir": "${sourceDir}/build/compiledb"
}
],
"version": 3
}