From 4ae33f198ae03a220c5eb14601c06594014b1215 Mon Sep 17 00:00:00 2001 From: Guilherme Maciel Ferreira Date: Fri, 13 May 2011 20:17:37 -0300 Subject: [PATCH] Minimum version required of Boost is 1.44 --- src/CMakeLists.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c0acad9..39bfbbf 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -5,7 +5,7 @@ include(FindPkgConfig) set(Boost_USE_STATIC_LIBS OFF) set(Boost_USE_MULTITHREADED ON) set(Boost_USE_STATIC_RUNTIME OFF) -find_package(Boost COMPONENTS filesystem program_options system thread REQUIRED) +find_package(Boost 1.44 COMPONENTS filesystem program_options system thread REQUIRED) include_directories(${Boost_INCLUDE_DIRS}) link_directories(${Boost_LIBRARY_DIRS}) -- 1.7.1