cmake/Tests/ConfigSources/custom4.cpp.in

14 lines
135 B
C++
Raw Normal View History

2021-09-14 00:13:48 +02:00
#ifdef CUSTOM_CFG_DEBUG
int custom4_debug()
{
return 0;
}
#endif
#ifdef CUSTOM_CFG_OTHER
int custom4_other()
{
return 0;
}
#endif