mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
271 B
CMake
12 lines
271 B
CMake
![]()
7 years ago
|
project(spdlite-example CXX)
|
||
![]()
7 years ago
|
|
||
![]()
7 years ago
|
set(LITE_SOURCES example.cpp create_logger.cpp)
|
||
![]()
7 years ago
|
|
||
|
add_executable(${PROJECT_NAME} ${LITE_SOURCES})
|
||
|
|
||
![]()
7 years ago
|
find_package(Threads)
|
||
![]()
7 years ago
|
target_link_libraries(${PROJECT_NAME} PRIVATE Threads::Threads)
|
||
![]()
7 years ago
|
target_link_libraries(${PROJECT_NAME} PRIVATE spdlite)
|
||
![]()
7 years ago
|
|
||
|
|