forked from LizardByte/Sunshine
-
-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathCMakePresets.json
More file actions
29 lines (29 loc) · 641 Bytes
/
CMakePresets.json
File metadata and controls
29 lines (29 loc) · 641 Bytes
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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "dev-win",
"displayName": "Windows Dev (Ninja + MSYS2)",
"description": "Local Windows development build. Run inside MSYS2 UCRT64 shell.",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"BUILD_DOCS": "OFF",
"SUNSHINE_ASSETS_DIR": "assets",
"FETCH_DRIVER_DEPS": "OFF"
}
}
],
"buildPresets": [
{
"name": "dev",
"displayName": "Dev Build",
"configurePreset": "dev-win"
}
]
}