6da65b3907
Use the same rules for paths in source and binary dirs in installed INTERFACE_SOURCES as are used for INTERFACE_INCLUDE_DIRECTORIES.
14 lines
197 B
C++
14 lines
197 B
C++
|
|
#ifndef USE_FROM_BUILD_DIR
|
|
#error Expected define USE_FROM_BUILD_DIR
|
|
#endif
|
|
|
|
#ifdef USE_FROM_INSTALL_DIR
|
|
#error Unexpected define USE_FROM_INSTALL_DIR
|
|
#endif
|
|
|
|
int source_symbol()
|
|
{
|
|
return 42;
|
|
}
|