Fixed 'std::call_once' crash problem with peglint on Ubuntu.

pull/48/head
yhirose 6 years ago
parent 91bf45b7d4
commit 469a61f044
  1. 6
      lint/CMakeLists.txt

@ -2,6 +2,12 @@ cmake_minimum_required(VERSION 2.8)
include_directories(..)
add_definitions("-std=c++11")
add_executable(peglint peglint.cc server.cc)
if(WIN32)
target_link_libraries(peglint wsock32 ws2_32)
endif()
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
#set(add_link_deps pthread)
target_link_libraries(peglint pthread)
endif()

Loading…
Cancel
Save