1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-04-28 12:06:55 +00:00
This commit is contained in:
root 2014-08-06 00:54:53 +04:00
parent d8772156a7
commit 174b528082

View file

@ -4,12 +4,15 @@
#include <string> #include <string>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
#if defined(__UNIX__) || defined(__FreeBSD__) #if defined(__linux__) || defined(__FreeBSD__)
#ifdef NOT_ANDROID
#include <components/files/linuxpath.hpp> #include <components/files/linuxpath.hpp>
namespace Files { typedef LinuxPath TargetPathType; } namespace Files { typedef LinuxPath TargetPathType; }
#elif defined (__ANDROID__) #else
#include <components/files/androidpath.hpp> #include <components/files/androidpath.hpp>
namespace Files { typedef AndroidPath TargetPathType; } namespace Files { typedef AndroidPath TargetPathType; }
#endif
#elif defined(__WIN32) || defined(__WINDOWS__) || defined(_WIN32) #elif defined(__WIN32) || defined(__WINDOWS__) || defined(_WIN32)
#include <components/files/windowspath.hpp> #include <components/files/windowspath.hpp>
namespace Files { typedef WindowsPath TargetPathType; } namespace Files { typedef WindowsPath TargetPathType; }