devoptab: add SFTP. fs: disable stdio buffering. cmake: add options to disable components of sphaira, add new "lite" build with minimal features.

This commit is contained in:
ITotalJustice
2025-09-09 18:39:03 +01:00
parent 1695d69aa3
commit 931531e799
23 changed files with 11995 additions and 391 deletions

View File

@@ -21,6 +21,35 @@
"LTO": true
}
},
{
"name": "Lite",
"displayName": "Lite",
"inherits":["core"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "MinSizeRel",
"LTO": true,
"ENABLE_NVJPG": false,
"ENABLE_NSZ": false,
"ENABLE_LIBUSBHSFS": false,
"ENABLE_LIBUSBDVD": false,
"ENABLE_FTPSRV": false,
"ENABLE_LIBHAZE": false,
"ENABLE_AUDIO_MP3": false,
"ENABLE_AUDIO_OGG": false,
"ENABLE_AUDIO_WAV": false,
"ENABLE_AUDIO_FLAC": false,
"ENABLE_DEVOPTAB_HTTP": false,
"ENABLE_DEVOPTAB_NFS": false,
"ENABLE_DEVOPTAB_SMB2": false,
"ENABLE_DEVOPTAB_FTP": false,
"ENABLE_DEVOPTAB_SFTP": false,
"ENABLE_DEVOPTAB_WEBDAV": false
}
},
{
"name": "Dev",
"displayName": "Dev",
@@ -38,6 +67,11 @@
"configurePreset": "Release",
"jobs": 16
},
{
"name": "Lite",
"configurePreset": "Lite",
"jobs": 16
},
{
"name": "Dev",
"configurePreset": "Dev",