fs: add support for mounting nsp an xci files in the filebrowser.

This commit is contained in:
ITotalJustice
2025-08-11 07:01:52 +01:00
parent 25f2cfbff2
commit cb2fa1abfc
15 changed files with 801 additions and 137 deletions

View File

@@ -18,7 +18,8 @@
"inherits":["core"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "MinSizeRel",
"ENABLE_NETWORK_INSTALL": false
"ENABLE_NETWORK_INSTALL": false,
"LTO": true
}
},
{
@@ -27,14 +28,19 @@
"inherits":["core"],
"cacheVariables": {
"CMAKE_BUILD_TYPE": "MinSizeRel",
"ENABLE_NETWORK_INSTALL": true
"ENABLE_NETWORK_INSTALL": true,
"LTO": true
}
},
{
"name": "Debug",
"displayName": "Debug",
"name": "Dev",
"displayName": "Dev",
"inherits":["core"],
"cacheVariables": { "CMAKE_BUILD_TYPE":"Debug" }
"cacheVariables": {
"CMAKE_BUILD_TYPE": "MinSizeRel",
"ENABLE_NETWORK_INSTALL": true,
"LTO": false
}
}
],
"buildPresets": [
@@ -49,8 +55,8 @@
"jobs": 16
},
{
"name": "Debug",
"configurePreset": "Debug",
"name": "Dev",
"configurePreset": "Dev",
"jobs": 16
}
]