6 lines
188 B
CMake
6 lines
188 B
CMake
# header-only library
|
|
add_library(indentlog INTERFACE)
|
|
target_include_directories(indentlog INTERFACE
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
)
|