From: Uwe Hermann Date: Wed, 30 Oct 2013 09:43:16 +0000 (+0100) Subject: test/CMakeLists.txt: Fix Boost version requirement. X-Git-Tag: pulseview-0.2.0~232 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=2ec05cc6cdb6b34f99e9dc82d123d3d0b41d6690 test/CMakeLists.txt: Fix Boost version requirement. The current requirement is 1.42, the 1.46 in test/CMakeLists.txt is a copy-paste error. This was noticed since OpenBSD currently ships 1.42 and the tests would not build there. --- diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e0f4fce7..0a58cde8 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -30,7 +30,7 @@ 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.46 COMPONENTS system thread unit_test_framework REQUIRED) +find_package(Boost 1.42 COMPONENTS system thread unit_test_framework REQUIRED) FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac) find_package(Qt4 REQUIRED)