mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 11:55:30 +00:00
Merge pull request #105 from XinzhaoZHU/master
Use CMake's Threads library to provide '-pthread` for Linux
This commit is contained in:
commit
a37c609802
@ -1,6 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.1.0)
|
||||
project("cpp-peglib")
|
||||
|
||||
find_package(Threads)
|
||||
# Check if a supported compiler is used to setup the C++ standard to use:
|
||||
get_property(known_features GLOBAL PROPERTY CMAKE_CXX_KNOWN_FEATURES)
|
||||
list(FIND known_features "cxx_std_17" found)
|
||||
@ -31,7 +32,7 @@ elseif(MSVC)
|
||||
endif()
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
set(add_link_deps pthread)
|
||||
set(add_link_deps Threads::Threads)
|
||||
endif()
|
||||
|
||||
enable_testing()
|
||||
|
@ -5,5 +5,5 @@ add_definitions("-std=c++11")
|
||||
add_executable(peglint peglint.cc)
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
target_link_libraries(peglint pthread)
|
||||
target_link_libraries(peglint ${add_link_deps})
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user