X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=test%2FCMakeLists.txt;h=57ca26f0026de927c6fb60a0c77e3fd2271ed415;hp=84245bb71f64a7e55030897ae01145a6fa2ab4c8;hb=a9a88468dcac5f2de138f9dc4ffd0935d6927e06;hpb=61e1e13ef24493f478326f1809c6c206d5e183bc diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 84245bb7..57ca26f0 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -33,7 +33,14 @@ pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS}) # This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value. find_package(Threads) -find_package(Boost 1.42 COMPONENTS system thread unit_test_framework 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 system thread_win32 unit_test_framework REQUIRED) +else() + find_package(Boost 1.42 COMPONENTS system thread unit_test_framework REQUIRED) +endif() + find_program(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac) find_package(Qt4 REQUIRED) @@ -124,7 +131,11 @@ if(ENABLE_DECODE) add_definitions(-DENABLE_DECODE) endif() +# On MinGW we need to use static linking. +if(NOT WIN32) add_definitions(-DBOOST_TEST_DYN_LINK) +endif() + add_definitions(${QT_DEFINITIONS}) include_directories(