mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 00:45:48 +08:00
14 lines
316 B
CMake
14 lines
316 B
CMake
project(spdlog-lite-example CXX)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
set(LITE_SOURCES example.cpp create_lite.cpp)
|
|
|
|
add_executable(${PROJECT_NAME} ${LITE_SOURCES})
|
|
|
|
include_directories(../lite)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE Threads::Threads)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE spdlog_lite)
|
|
|
|
|