From 265821ba0b9ea2eb77ceb9158ceb83fffe12bc8f Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Mon, 28 Oct 2013 12:39:56 +0000 Subject: QPID-5260: Significant tidy up of cmake build * Move to cmake 2.6 as minimum required version (2.4 is extremely long in the tooth now) * Add control over building individual language bindings * Make settings you don't usually want to change advanced so they are hidden by default * Changed to a uniform naming scheme for options: ** Options controlling what to build are all BUILD_ ** Options controlling features of he build are ENABLE_ ** Options controlling internal aspects of the qpid runtime are QPID_ * Respect the BUILD_TESTING option so that we won't build the tests unless it is set (it is by default) * If we don't find the boost_unit_test_framework then don't fail, just don't build the unit tests (this is motivated by one of the Apache Jenkins ubuntu builders which has this set up) * Tidied up some of the detection of external dependencies to make it more idiomatic cmake (but there is more to do here) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1536329 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/etc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/cpp/etc') diff --git a/qpid/cpp/etc/CMakeLists.txt b/qpid/cpp/etc/CMakeLists.txt index df427347b3..6158b9e27b 100644 --- a/qpid/cpp/etc/CMakeLists.txt +++ b/qpid/cpp/etc/CMakeLists.txt @@ -51,6 +51,6 @@ if (BUILD_SASL) install(FILES sasl2/qpidd.conf DESTINATION ${QPID_INSTALL_SASLDIR} COMPONENT ${QPID_COMPONENT_BROKER} - RENAME ${BROKER_SASL_NAME}.conf) + RENAME ${QPID_BROKER_SASL_NAME}.conf) endif (BUILD_SASL) -- cgit v1.2.1