-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakePresets.json
More file actions
98 lines (94 loc) · 1.89 KB
/
CMakePresets.json
File metadata and controls
98 lines (94 loc) · 1.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 14,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "Default Config",
"description": "Default build using Ninja generator",
"generator": "Ninja",
"hidden": true
},
{
"name": "cs2-base",
"hidden": true,
"binaryDir": "${sourceDir}/build/${hostSystemName}/CS2/${presetName}",
"inherits": "default",
"cacheVariables": {
"S2_GAME_NAME": "csgo",
"S2_GAME_START": "matchmaking",
"SOURCESDK_GAME_TARGET": "cs2"
}
},
{
"name": "deadlock-base",
"hidden": true,
"binaryDir": "${sourceDir}/build/${hostSystemName}/Deadlock/${presetName}",
"inherits": "default",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"cacheVariables": {
"S2_GAME_NAME": "citadel",
"S2_GAME_START": "navsystem",
"SOURCESDK_GAME_TARGET": "deadlock"
}
},
{
"name": "Debug-CS2",
"displayName": "Debug (CS2)",
"inherits": "cs2-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release-CS2",
"displayName": "Release (CS2)",
"inherits": "cs2-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "Debug-Deadlock",
"displayName": "Debug (Deadlock)",
"inherits": "deadlock-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release-Deadlock",
"displayName": "Release (Deadlock)",
"inherits": "deadlock-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "Debug (CS2)",
"configurePreset": "Debug-CS2"
},
{
"name": "Release (CS2)",
"configurePreset": "Release-CS2"
},
{
"name": "Debug (Deadlock)",
"configurePreset": "Debug-Deadlock"
},
{
"name": "Release (Deadlock)",
"configurePreset": "Release-Deadlock"
}
]
}