Skip to content

Commit

Permalink
Add macOS support
Browse files Browse the repository at this point in the history
  • Loading branch information
conradev committed Oct 4, 2021
1 parent fb6c32d commit e0390ab
Show file tree
Hide file tree
Showing 5 changed files with 2,717 additions and 3 deletions.
6 changes: 6 additions & 0 deletions config.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
#if defined(__APPLE__)
#include <TargetConditionals.h>
#endif

#if defined(WIN32) || defined(_WIN32)
#include "config_windows_x86_64.h"
#elif defined(__gnu_linux__)
#include "config_linux_x86_64.h"
#elif defined(TARGET_OS_MAC) && TARGET_OS_MAC
#include "config_macosx_x86_64.h"
#elif defined(__ANDROID__)
#if defined(__aarch64__)
#include "config_android_aarch64.h"
Expand Down
Loading

0 comments on commit e0390ab

Please sign in to comment.