diff options
author | Alan Conway <aconway@apache.org> | 2009-12-10 18:40:37 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-12-10 18:40:37 +0000 |
commit | caaa1c00f62f11a1f046a7cf40583eedd2d873e3 (patch) | |
tree | dab64857825b5d6f95b13a9656b21364343714c0 /cpp/src/tests | |
parent | 1de217b96481937bfdff19fb4ced708330faaf3d (diff) | |
download | qpid-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/tests')
-rw-r--r-- | cpp/src/tests/cluster.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/cluster.cmake b/cpp/src/tests/cluster.cmake index cc7d154e7d..9084bfb85b 100644 --- a/cpp/src/tests/cluster.cmake +++ b/cpp/src/tests/cluster.cmake @@ -35,7 +35,7 @@ set (cluster_test_SOURCES InitialStatusMap StoreStatus ) -add_executable (cluster_test cluster_test ${cluster_test_SOURCES} ${platform_test_additions}) +add_executable (cluster_test ${cluster_test_SOURCES} ${platform_test_additions}) target_link_libraries (cluster_test ${qpid_test_boost_libs} qpidclient qpidbroker cluster_shared) remember_location(cluster_test) |