forked from D7ry/EldenParry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
59 lines (59 loc) · 1.69 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" : 3 ,
"configurePresets" : [{
"binaryDir" : "${sourceDir}/build" ,
"hidden" : true ,
"name" : "cmake-dev" ,
"errors" : { "deprecated": true },
"cacheVariables" : {
"CMAKE_BUILD_TYPE" : {
"type" : "STRING" ,
"value" : "Debug"
}
},
"warnings" : {
"deprecated" : true ,
"dev" : true
}
},{
"cacheVariables" : {
"CMAKE_TOOLCHAIN_FILE" : {
"value" : "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" ,
"type" : "STRING"
}
},
"hidden" : true ,
"name" : "vcpkg"
},{
"cacheVariables" : {
"CMAKE_MSVC_RUNTIME_LIBRARY" : {
"value": "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL" ,
"type": "STRING"
},
"VCPKG_TARGET_TRIPLET": {
"value" : "x64-windows-static-md" ,
"type" : "STRING"
}
},
"hidden" : true ,
"name" : "windows"
},{
"cacheVariables" : { "CMAKE_CXX_FLAGS" : "/EHsc /MP /W4 /WX" },
"generator" : "Visual Studio 17 2022" ,
"inherits" : [ "cmake-dev" , "vcpkg" , "windows" ],
"toolset" : "v143" ,
"name" : "vs2022-windows" ,
"architecture" : {
"strategy" : "set" ,
"value" : "x64"
}
},{
"cacheVariables" : { "SKYRIM_SUPPORT_AE" : "OFF" },
"inherits" : "vs2022-windows" ,
"name" : "se"
},{
"cacheVariables" : { "SKYRIM_SUPPORT_AE" : "ON" },
"inherits" : "vs2022-windows" ,
"name" : "ae"
}]
}