forked from sbstnc/openmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
96 lines (96 loc) · 2.67 KB
/
CMakePresets.json
File metadata and controls
96 lines (96 loc) · 2.67 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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"patch": 0
},
"configurePresets": [
{
"name": "dc-base",
"hidden": true,
"generator": "Ninja",
"toolchainFile": "$env{KOS_CMAKE_TOOLCHAIN}",
"cacheVariables": {
"BUILD_DREAMCAST": "ON",
"BUILD_PC": "OFF"
}
},
{
"name": "dc-debug",
"inherits": "dc-base",
"displayName": "Dreamcast (Debug)",
"description": "Configure for Dreamcast (Debug build)",
"binaryDir": "${sourceDir}/cmake-build-dc-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "dc-release",
"inherits": "dc-base",
"displayName": "Dreamcast (Release)",
"description": "Configure for Dreamcast (Release build)",
"binaryDir": "${sourceDir}/cmake-build-dc-release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "native-base",
"hidden": true,
"generator": "Ninja",
"cacheVariables": {
"BUILD_DREAMCAST": "OFF",
"BUILD_PC": "ON"
}
},
{
"name": "native-tools-debug",
"inherits": "native-base",
"displayName": "Native Tools (Debug)",
"description": "Configure native host tools (Debug build)",
"binaryDir": "${sourceDir}/cmake-build-native-tools-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "native-tools-release",
"inherits": "native-base",
"displayName": "Native Tools (Release)",
"description": "Configure native host tools (Release build)",
"binaryDir": "${sourceDir}/cmake-build-native-tools-release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "dc-debug",
"configurePreset": "dc-debug",
"displayName": "Build OpenMenu for Dreamcast (Debug)",
"description": "Build OpenMenu using the Debug configuration"
},
{
"name": "dc-release",
"configurePreset": "dc-release",
"displayName": "Build OpenMenu for Dreamcast (Release)",
"description": "Build OpenMenu using the Release configuration"
},
{
"name": "native-tools-debug",
"configurePreset": "native-tools-debug",
"displayName": "Build Native Tools (Debug)",
"description": "Build native tools using the Debug configuration"
},
{
"name": "native-tools-release",
"configurePreset": "native-tools-release",
"displayName": "Build Native Tools (Release)",
"description": "Build native tools using the Release configuration"
}
],
"testPresets": []
}