mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
fixed gcc build
This commit is contained in:
parent
b09b07abf8
commit
c900b25dfd
@ -32,6 +32,11 @@ else()
|
|||||||
find_package(spdlog CONFIG REQUIRED)
|
find_package(spdlog CONFIG REQUIRED)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||||
|
set ( CMAKE_CXX_FLAGS "--std=c++11 -pthread")
|
||||||
|
set ( CMAKE_EXE_LIKKER_FLAGS "-pthread")
|
||||||
|
endif ()
|
||||||
|
|
||||||
add_executable(example example.cpp)
|
add_executable(example example.cpp)
|
||||||
target_link_libraries(example spdlog::spdlog)
|
target_link_libraries(example spdlog::spdlog)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user