]> sigrok.org Git - pulseview.git/blobdiff - CMakeLists.txt
Usage of std::thread requires linking with appropriate system thread library.
[pulseview.git] / CMakeLists.txt
index 2fd35b1c3a1ee389fa1587ff2c2cafdf624c2686..27859b3ad0674bcf48dbe16203229391dad0b82e 100644 (file)
@@ -92,6 +92,8 @@ endif()
 
 find_package(Boost 1.42 COMPONENTS filesystem system REQUIRED)
 
+find_package(Threads REQUIRED)
+
 #===============================================================================
 #= System Introspection
 #-------------------------------------------------------------------------------
@@ -318,6 +320,7 @@ link_directories(${Boost_LIBRARY_DIRS})
 set(PULSEVIEW_LINK_LIBS
        ${Boost_LIBRARIES}
        ${QT_LIBRARIES}
+       ${CMAKE_THREAD_LIBS_INIT}
 )
 
 if(STATIC_PKGDEPS_LIBS)