X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=CMakeLists.txt;h=136880e0d276eb1423fc2965f901a9a5fc4626f7;hp=0ef18566cec4f6db9f63d950683abd0af9a85fc4;hb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;hpb=aca64cac30aadeee90510958b081cd385221b258 diff --git a/CMakeLists.txt b/CMakeLists.txt index 0ef18566..136880e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,6 +44,10 @@ if(WIN32) # This option is user configurable, but enable it by default on win32. set(STATIC_PKGDEPS_LIBS TRUE) + # For boost-thread we need two additional settings on win32: + set(Boost_USE_STATIC_LIBS ON) + add_definitions(-DBOOST_THREAD_USE_LIB) + # Windows does not support UNIX signals. set(ENABLE_SIGNALS FALSE) endif() @@ -91,7 +95,13 @@ else() find_package(Qt4 REQUIRED QtCore QtGui QtSvg) endif() -find_package(Boost 1.42 COMPONENTS filesystem system thread REQUIRED) +if(WIN32) + # On Windows/MinGW we need to use 'thread_win32' instead of 'thread'. + # The library is named libboost_thread_win32* (not libboost_thread*). + find_package(Boost 1.42 COMPONENTS filesystem system thread_win32 REQUIRED) +else() + find_package(Boost 1.42 COMPONENTS filesystem system thread REQUIRED) +endif() # Find the platform's thread library (needed for C++11 threads). # This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value. @@ -204,6 +214,7 @@ set(pulseview_HEADERS pv/view/header.h pv/view/logicsignal.h pv/view/marginwidget.h + pv/view/rowitem.h pv/view/ruler.h pv/view/selectableitem.h pv/view/signal.h