mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 20:05:31 +00:00
Merge pull request #100 from bnjf/patch-1
Fix "terminate called after throwing an instance of 'std::system_error'"
This commit is contained in:
commit
da123f1cd1
@ -3,3 +3,7 @@ project(peglint)
|
|||||||
include_directories(..)
|
include_directories(..)
|
||||||
add_definitions("-std=c++11")
|
add_definitions("-std=c++11")
|
||||||
add_executable(peglint peglint.cc)
|
add_executable(peglint peglint.cc)
|
||||||
|
|
||||||
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||||
|
target_link_libraries(peglint pthread)
|
||||||
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user