diff --git a/platform/platform_mac.mm b/platform/platform_mac.mm index 278de9c535..2d47f40e17 100644 --- a/platform/platform_mac.mm +++ b/platform/platform_mac.mm @@ -1,5 +1,7 @@ #include "platform/platform.hpp" +#include "coding/file_name_utils.hpp" + #include "base/logging.hpp" #include "std/target_os.hpp" @@ -24,7 +26,16 @@ Platform::Platform() // get resources directory path string const resourcesPath = [[[NSBundle mainBundle] resourcePath] UTF8String]; string const bundlePath = [[[NSBundle mainBundle] bundlePath] UTF8String]; - if (resourcesPath == bundlePath) + + char const * envResourcesDir = ::getenv("MWM_RESOURCES_DIR"); + char const * envWritableDir = ::getenv("MWM_WRITABLE_DIR"); + + if (envResourcesDir && envWritableDir) + { + m_resourcesDir = envResourcesDir; + m_writableDir = envWritableDir; + } + else if (resourcesPath == bundlePath) { // we're the console app, probably unit test, and path is our directory m_resourcesDir = bundlePath + "/../../data/"; @@ -72,6 +83,9 @@ Platform::Platform() } } + m_resourcesDir = my::AddSlashIfNeeded(m_resourcesDir); + m_writableDir = my::AddSlashIfNeeded(m_writableDir); + m_settingsDir = m_writableDir; NSString * tempDir = NSTemporaryDirectory();