source_target.cpp 197 B

12345678910111213
  1. #ifndef USE_FROM_BUILD_DIR
  2. #error Expected define USE_FROM_BUILD_DIR
  3. #endif
  4. #ifdef USE_FROM_INSTALL_DIR
  5. #error Unexpected define USE_FROM_INSTALL_DIR
  6. #endif
  7. int source_symbol()
  8. {
  9. return 42;
  10. }