Files
funnygame/buildcfg.cpp

16 lines
256 B
C++

#include "helper.h"
DECLARE_BUILD_STAGE(config)
{
if (Target_t::DefaultTarget().kernel == TARGET_KERNEL_IOS)
{
ADD_OUTPUT_VALUE("static", "true");
}
else
{
ADD_OUTPUT_VALUE("static", "false");
}
ADD_OUTPUT_VALUE("static", "true");
return 0;
}