From 896566e546a74d32ba9a252c04b8c79c3953e2e3 Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Mon, 22 Aug 2011 16:21:53 +0200 Subject: [PATCH] Do not link against boost-program-options, since it's already generated by swift-config --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef838be3..17e7c0b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,8 @@ set(Swiften_DIR "${CMAKE_SOURCE_DIR}/cmake_modules") find_package(Swiften REQUIRED) set(Boost_DIR "${CMAKE_SOURCE_DIR}/cmake_modules") -find_package(Boost COMPONENTS date_time system filesystem program_options regex thread signals REQUIRED) +find_package(Boost COMPONENTS date_time system filesystem regex thread signals REQUIRED) +message( STATUS "Found Boost: ${Boost_LIBRARIES}, ${Boost_INCLUDE_DIR}") set(Protobuf_DIR "${CMAKE_SOURCE_DIR}/cmake_modules") find_package(Protobuf REQUIRED)