noggit3
noggit3 copied to clipboard
Build linux
The patch fixes several issues in Linux systems:
- Eliminates CMake warnings about using the deprecated FetchContent_Populate
- Fixes opening local world maps (but their names must be in lowercase)
- Add few improvements for asset_browser:
- makes the filter actually functional
- alphabetical sorting
- significantly speeds up filtering
Note: QStringList performs filtering and sorting significantly faster than std::unordered_set. On my system filtering with std::unordered_set took around 7 seconds. Same operation with QStringList completes in 1 second.