Commit fbb3f41d authored by gabime's avatar gabime

Fix #1273

parent 1472048b
...@@ -82,11 +82,15 @@ message(STATUS "Build type: " ${CMAKE_BUILD_TYPE}) ...@@ -82,11 +82,15 @@ message(STATUS "Build type: " ${CMAKE_BUILD_TYPE})
set(SPDLOG_SRCS set(SPDLOG_SRCS
src/spdlog.cpp src/spdlog.cpp
src/stdout_sinks.cpp src/stdout_sinks.cpp
src/fmt.cpp
src/color_sinks.cpp src/color_sinks.cpp
src/file_sinks.cpp src/file_sinks.cpp
src/async.cpp) src/async.cpp)
if(NOT SPDLOG_FMT_EXTERNAL)
list(APPEND SPDLOG_SRCS src/fmt.cpp)
endif()
if (SPDLOG_BUILD_SHARED) if (SPDLOG_BUILD_SHARED)
if(WIN32) if(WIN32)
message(FATAL_ERROR "spdlog shared lib is not yet supported under windows") message(FATAL_ERROR "spdlog shared lib is not yet supported under windows")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment