1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-07 19:18:19 +02:00
Beef/IDEHelper/Targets.cpp
2024-02-16 19:29:47 -03:00

20 lines
No EOL
297 B
C++

#include "X86Target.h"
#include "BeefySysLib/util/AllocDebug.h"
USING_NS_BF;
BF_EXPORT void BF_CALLTYPE Targets_Create()
{
#ifndef __linux__
gX86Target = new X86Target();
#endif
}
BF_EXPORT void BF_CALLTYPE Targets_Delete()
{
#ifndef __linux__
delete gX86Target;
gX86Target = NULL;
#endif
}