forked from EasyRPG/Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json.template
More file actions
58 lines (58 loc) · 1.33 KB
/
CMakePresets.json.template
File metadata and controls
58 lines (58 loc) · 1.33 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
{
"version": 4,
"cmakeMinimumRequired": {
"major": 3,
"minor": 23,
"patch": 0
},
"include": [
"builds/cmake/CMakePresetsUser.json"
],
"configurePresets": [
{
"name": "",
"displayName": "System environment",
"easyrpg_platforms": ["liblcf", "vcpkg", "vcpkg-liblcf"]
},
{
"name": "windows",
"displayName": "Windows",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "$env{VSCMD_ARG_TGT_ARCH}-windows-eze"
},
"inherits": "win-user",
"easyrpg_platforms": ["liblcf"]
},
{
"name": "windows-x64-vs2022",
"displayName": "Windows (x64) using Visual Studio 2022",
"generator": "Visual Studio 17 2022",
"architecture": "x64",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows-eze"
},
"inherits": "win-user",
"easyrpg_platforms": ["liblcf"]
},
{
"name": "macos",
"displayName": "macOS",
"cacheVariables": {
"EDITOR_PREFIX_PATH_APPEND": "$env{EASYRPG_BUILDSCRIPTS}/macos/qt/6.10.1/macos",
"CMAKE_OSX_DEPLOYMENT_TARGET": "13.3",
"CMAKE_OSX_ARCHITECTURES": "arm64"
},
"environment": {
"Qt6_Path": "$env{EASYRPG_BUILDSCRIPTS}/macos/qt/6.10.1/macos"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Darwin"
},
"easyrpg_platforms": ["liblcf", "vcpkg", "vcpkg-liblcf"]
}
],
"buildPresets": [],
"testPresets": []
}