summaryrefslogtreecommitdiff
path: root/src/utils/specialfolder.h
AgeCommit message (Collapse)AuthorFilesLines
2024-04-17macOS: Create an app bundleThorbjørn Lindeijer1-0/+5
Also enable using `cpack -G DragNDrop` to create a DMG to easily drag Mana into the Applications folder. The DMG is also available as a CI artifact. The minimum deployment target has been set to 10.15, as required due to usage of std::filesystem::create_directories.
2024-04-08Windows: Modernize getSpecialFolderLocationThorbjørn Lindeijer1-2/+2
Ported from CSIDL to newer FOLDERID API and used wcstombs_s to convert the returned path to a multi-byte string. Fixes issues when the Windows username contains special characters.
2012-01-26Updated copyrights to 2012Thorbjørn Lindeijer1-1/+1
2011-10-25Change the wrong, but mostly supported WIN32 macro to the correct _WIN32, ↵Bernd Wachter1-1/+1
enforced by -std=c++0x Reviewed-by: Thorbjørn Lindeijer
2011-04-18Remove illegal macro names starting with underscore and capitalBen Longbons1-2/+2
2010-02-25Add support for special folder lookup on Win32Bernd Wachter1-0/+30
Reviewed-by: Jared Adams