mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 04:52:21 +02:00
14 lines
No EOL
345 B
C
14 lines
No EOL
345 B
C
#include "BFPlatform.h"
|
|
|
|
#ifdef BF_PLATFORM_WINDOWS
|
|
#include "windows/config.h"
|
|
#include "windows/gperftools/tcmalloc.h"
|
|
#elif defined BF_PLATFORM_MACOS
|
|
#include "osx/config.h"
|
|
#include "osx/gperftools/tcmalloc.h"
|
|
#elif defined BF_PLATFORM_IOS
|
|
#include "ios/config.h"
|
|
#include "ios/gperftools/tcmalloc.h"
|
|
#else
|
|
#error Platform not handled
|
|
#endif |