cmake/Tests/ConfigSources/iface_other_src.cpp

14 lines
253 B
C++
Raw Normal View History

2020-02-01 23:06:01 +01:00
#ifndef CFG_OTHER
# error "This source should only be compiled in a non-Debug configuration."
#endif
#ifdef CFG_DEBUG
# error "This source should not be compiled in a Debug configuration."
#endif
#include "iface.h"
int iface_other()
{
return 0;
}