add multi OS ifdef
added ifdef directives for conditional mutli OS build
This commit is contained in:
@@ -34,7 +34,13 @@
|
||||
#include <boost/filesystem/path.hpp>
|
||||
|
||||
#ifdef BUILD_ROGUE
|
||||
#include "../depends/x86_64-unknown-linux-gnu/include/db_cxx.h"
|
||||
#ifdef __APPLE__
|
||||
#include "../depends/x86_64-apple-darwin18.6.0/include/db_cxx.h"
|
||||
#elif defined(_WIN32)
|
||||
#include "../depends/x86_64-w64-mingw32/include/db_cxx.h"
|
||||
#else
|
||||
#include "../depends/x86_64-unknown-linux-gnu/include/db_cxx.h"
|
||||
#endif
|
||||
#else
|
||||
#include <db_cxx.h>
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user