blob: 5ad7c6ee0b2ccb78db12ed6fdac1fc6e0e198f18 (
plain)
1
2
3
4
5
6
7
8
9
|
enable_language(CXX)
add_library(interface INTERFACE)
install(TARGETS interface EXPORT export)
export(EXPORT export)
add_library(imported IMPORTED INTERFACE)
try_compile(tc "${CMAKE_CURRENT_BINARY_DIR}/tc" "${CMAKE_CURRENT_SOURCE_DIR}/empty.cpp" LINK_LIBRARIES imported)
|