summaryrefslogtreecommitdiff
path: root/cpp/src/cluster.cmake
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-12-10 18:40:37 +0000
committerAlan Conway <aconway@apache.org>2009-12-10 18:40:37 +0000
commitcaaa1c00f62f11a1f046a7cf40583eedd2d873e3 (patch)
treedab64857825b5d6f95b13a9656b21364343714c0 /cpp/src/cluster.cmake
parent1de217b96481937bfdff19fb4ced708330faaf3d (diff)
downloadqpid-python-caaa1c00f62f11a1f046a7cf40583eedd2d873e3.tar.gz
QPID-2236: cmake link error, missing boost.system library.
Tested on boost-1.37.0-7.fc11.x86_64 which has the system library and boost-1.33.1-10.el5 which does not. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@889358 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/cluster.cmake')
-rw-r--r--cpp/src/cluster.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/cluster.cmake b/cpp/src/cluster.cmake
index 910d75e768..2c7b108e71 100644
--- a/cpp/src/cluster.cmake
+++ b/cpp/src/cluster.cmake
@@ -133,7 +133,7 @@ if (BUILD_CLUSTER)
)
add_library (cluster MODULE ${cluster_SOURCES})
- target_link_libraries (cluster ${LIBCPG} ${CMAN_LIB} qpidbroker qpidclient ${Boost_FILESYSTEM_LIBRARY})
+ target_link_libraries (cluster ${LIBCPG} ${CMAN_LIB} qpidbroker qpidclient ${Boost_FILESYSTEM_LIBRARY} ${Boost_SYSTEM_LIBRARY})
set_target_properties (cluster PROPERTIES PREFIX "")
# Create a second shared library for linking with test executables,