diff options
author | Steph Enders <smenders@gmail.com> | 2022-06-27 17:45:44 -0400 |
---|---|---|
committer | Steph Enders <smenders@gmail.com> | 2022-06-27 17:45:44 -0400 |
commit | 38d46b2dda0243cfa60bc6945859ebd587e0a851 (patch) | |
tree | 3af0286199c6075ad50c36f2218c1c303f9fa921 /src/main.cpp | |
parent | 734ee0f6352fdb6077c142d90f191c11c32f98d2 (diff) |
Update MacOS to compile w/ Boost
MacOS seems to rely on an older/different C++ stdlib than Windows or
Linux. So replacing those with Boost equivalents.
Mostly contained to the Resources thankfully!
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index c8d7b2d..38208ec 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -59,6 +59,9 @@ int main(int argc, char **argv) { #ifdef _WIN32 Resources *res = new WindowsResources(); #endif +#ifdef __APPLE__ + Resources *res = new MacResources(); +#endif res->loadDefaultLuaFile(); res->loadFontFiles(); res->loadLevels(); |