1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-02 22:36:00 +02:00

Moving BeefMem

This commit is contained in:
Brian Fiete 2019-09-04 11:41:56 -07:00
parent b3487d733b
commit 65bf1915af
337 changed files with 0 additions and 4 deletions

View file

@ -0,0 +1,14 @@
#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