cmake/Tests/ConfigSources/custom1.cpp.in
2021-09-14 00:13:48 +02:00

14 lines
135 B
C++

#ifdef CUSTOM_CFG_DEBUG
int custom1_debug()
{
return 0;
}
#endif
#ifdef CUSTOM_CFG_OTHER
int custom1_other()
{
return 0;
}
#endif