14 lines
201 B
C++
Raw Normal View History

2015-08-17 11:37:30 +02:00
#ifndef USE_FROM_BUILD_DIR
2018-08-09 18:06:22 +02:00
# error Expected define USE_FROM_BUILD_DIR
2015-08-17 11:37:30 +02:00
#endif
#ifdef USE_FROM_INSTALL_DIR
2018-08-09 18:06:22 +02:00
# error Unexpected define USE_FROM_INSTALL_DIR
2015-08-17 11:37:30 +02:00
#endif
int source_symbol()
{
return 42;
}