diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-03-13 15:45:37 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-04-17 14:34:48 +0200 |
commit | aecbf876cd0a7894396a2e5034af9d93bf028aa0 (patch) | |
tree | 9b5742ee8e610cd396116eb56aa3fd764a4a8b56 /src/main.cpp | |
parent | 4a730fa0b08c68fc01f35b79a43fdd72411f2b83 (diff) | |
download | mana-aecbf876cd0a7894396a2e5034af9d93bf028aa0.tar.gz mana-aecbf876cd0a7894396a2e5034af9d93bf028aa0.tar.bz2 mana-aecbf876cd0a7894396a2e5034af9d93bf028aa0.tar.xz mana-aecbf876cd0a7894396a2e5034af9d93bf028aa0.zip |
macOS: Create an app bundle
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.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 68a6b0c3..935f2d89 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -37,6 +37,10 @@ #include <winnls.h> #endif +#ifdef __APPLE__ +#include "utils/specialfolder.h" +#endif + static void printHelp() { using std::endl; @@ -213,7 +217,14 @@ static void initInternationalization() #endif // _WIN32 setlocale(LC_MESSAGES, ""); + +#ifdef __APPLE__ + const auto translationsDir = getResourcesLocation() + "/Translations"; + bindtextdomain("mana", translationsDir.c_str()); +#else bindtextdomain("mana", LOCALEDIR); +#endif + bind_textdomain_codeset("mana", "UTF-8"); textdomain("mana"); #endif // ENABLE_NLS |