Kylin/Universal/CMakeLists.txt

10 lines
238 B
CMake
Raw Normal View History

2023-07-21 10:47:31 +08:00
find_package(Boost REQUIRED COMPONENTS log log_setup)
add_library(Universal
BoostLog.h BoostLog.inl BoostLog.cpp
StreamFormat.h StreamFormat.inl StreamFormat.cpp
)
target_link_libraries(Universal
PRIVATE ${Boost_LIBRARIES}
)