Files
funnygame/fpc/library/target.cpp
2025-06-04 00:18:32 +03:00

17 lines
262 B
C++

#include "target.h"
#include <god/build.h>
Target_t Target_t::DefaultTarget()
{
return {
.kernel = TARGET_KERNEL_LINUX,
#ifdef __x86_64__
.cpu = TARGET_CPU_AMD64,
#endif
#ifdef __x86__
.cpu = TARGET_CPU_I386,
#endif
.optimization = TARGET_DEBUG,
};
}