forked from teamnwah/openmw-tes3coop
fixe v 3
This commit is contained in:
parent
d8772156a7
commit
174b528082
1 changed files with 5 additions and 2 deletions
|
@ -4,12 +4,15 @@
|
|||
#include <string>
|
||||
#include <boost/filesystem.hpp>
|
||||
|
||||
#if defined(__UNIX__) || defined(__FreeBSD__)
|
||||
#if defined(__linux__) || defined(__FreeBSD__)
|
||||
#ifdef NOT_ANDROID
|
||||
#include <components/files/linuxpath.hpp>
|
||||
namespace Files { typedef LinuxPath TargetPathType; }
|
||||
#elif defined (__ANDROID__)
|
||||
#else
|
||||
|
||||
#include <components/files/androidpath.hpp>
|
||||
namespace Files { typedef AndroidPath TargetPathType; }
|
||||
#endif
|
||||
#elif defined(__WIN32) || defined(__WINDOWS__) || defined(_WIN32)
|
||||
#include <components/files/windowspath.hpp>
|
||||
namespace Files { typedef WindowsPath TargetPathType; }
|
||||
|
|
Loading…
Reference in a new issue