From 8f7226051e3c00387a20090467ed7971ce75b746 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Tue, 14 Aug 2012 08:59:48 -0600 Subject: [PATCH] Add boost::system to linkage to support boost 1.50. Should not cause any issue for older users of boost --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9f0c767f..44c8b6d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -79,7 +79,7 @@ set (Chai_INCLUDES include/chaiscript/chaiscript.hpp include/chaiscript/chaiscri set_source_files_properties(${Chai_INCLUDES} PROPERTIES HEADER_FILE_ONLY TRUE) if (MULTITHREAD_SUPPORT_ENABLED) - find_package(Boost 1.36.0 COMPONENTS thread) + find_package(Boost 1.36.0 COMPONENTS thread system) if (Boost_FOUND) link_directories( ${Boost_LIBRARY_DIRS} )