fixed gcc build

This commit is contained in:
gabime 2015-09-19 18:57:19 +03:00
parent b09b07abf8
commit c900b25dfd
1 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,11 @@ else()
find_package(spdlog CONFIG REQUIRED)
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)
target_link_libraries(example spdlog::spdlog)