forked from ezEngine/ezEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeUserPresets.json.template
52 lines (52 loc) · 1.26 KB
/
CMakeUserPresets.json.template
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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "user-specific",
"hidden": true,
"cacheVariables": {
"EZ_QT_DIR" : "directory to qt6 install location",
"CMAKE_C_COMPILER" : "clang-14",
"CMAKE_CXX_COMPILER" : "clang++-14"
},
"environment": {
"EZ_STEAMRT_SDK_ROOT" : "Directory to SteamRT Sniper SDK root"
}
},
{
"name": "Debug",
"displayName": "Debug",
"inherits": [ "linux-clang-debug", "user-specific"]
},
{
"name": "Dev",
"displayName": "Dev",
"inherits": [ "linux-clang-dev", "user-specific"]
},
{
"name": "Shipping",
"displayName": "Shipping",
"inherits": [ "linux-clang-shipping", "user-specific"]
},
{
"name": "Debug-SteamRT",
"displayName": "Debug-SteamRT",
"inherits": [ "linux-steam-clang-debug", "user-specific"]
},
{
"name": "Dev-SteamRT",
"displayName": "Dev-SteamRT",
"inherits": [ "linux-steam-clang-dev", "user-specific"]
},
{
"name": "Shipping-SteamRT",
"displayName": "Shipping-SteamRT",
"inherits": [ "linux-steam-clang-shipping", "user-specific"]
}
]
}