mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 23:34:10 +02:00
14 lines
343 B
C
14 lines
343 B
C
![]() |
#include "BFPlatform.h"
|
||
|
|
||
|
#ifdef BF_PLATFORM_WINDOWS
|
||
|
#include "windows/config.h"
|
||
|
#include "windows/gperftools/tcmalloc.h"
|
||
|
#elif defined BF_PLATFORM_OSX
|
||
|
#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
|