forked from Scrabx3/SexLabpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
115 lines (115 loc) · 2.58 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"configurePresets": [
{
"errors": {
"deprecated": true
},
"hidden": true,
"name": "cmake-dev",
"warnings": {
"deprecated": true,
"dev": true
}
},
{
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": {
"type": "STRING",
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
}
},
"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": [
"cmake-dev",
"vcpkg",
"windows"
],
"name": "vs2022-windows-vcpkg",
"toolset": "v143",
"hidden": true
},
{
"binaryDir": "${sourceDir}/build/vs2022-SE",
"inherits": [
"vs2022-windows-vcpkg"
],
"name": "vs2022-windows-vcpkg-se"
},
{
"cacheVariables": {
"BUILD_SKYRIMAE": true
},
"binaryDir": "${sourceDir}/build/vs2022-AE",
"inherits": [
"vs2022-windows-vcpkg"
],
"name": "vs2022-windows-vcpkg-ae"
},
{
"cacheVariables": {
"BUILD_SKYRIMVR": true
},
"binaryDir": "${sourceDir}/build/vs2022-VR",
"inherits": [
"vs2022-windows-vcpkg"
],
"name": "vs2022-windows-vcpkg-vr"
}
],
"buildPresets": [
{
"name": "vs2022-windows-vcpkg-se-Release",
"description": "",
"displayName": "",
"configurePreset": "vs2022-windows-vcpkg-se",
"configuration": "Release"
},
{
"name": "vs2022-windows-vcpkg-ae-Release",
"description": "",
"displayName": "",
"configurePreset": "vs2022-windows-vcpkg-ae",
"configuration": "Release"
},
{
"name": "vs2022-windows-vcpkg-vr-Release",
"description": "",
"displayName": "",
"configurePreset": "vs2022-windows-vcpkg-vr",
"configuration": "Release"
},
{
"name": "vs2022-windows-vcpkg-ae-Debug",
"description": "",
"displayName": "",
"configurePreset": "vs2022-windows-vcpkg-ae",
"configuration": "Debug"
}
],
"version": 3
}