summaryrefslogtreecommitdiff
path: root/cpp/etc
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2011-11-03 14:32:01 +0000
committerAndrew Stitcher <astitcher@apache.org>2011-11-03 14:32:01 +0000
commita68d12beaff7bccff4bc8c8833ce9fac1c3ec6e4 (patch)
treec8d30f06a378c648ee99d193cdfc05e1e3c69434 /cpp/etc
parentfa7568b96308ac17374285c0c65de522a91ccf0e (diff)
downloadqpid-python-a68d12beaff7bccff4bc8c8833ce9fac1c3ec6e4.tar.gz
QPID-3464: Build Improvements (CMake) [from Jan-Marek Glogowski]
- Improved CMake build significantly bringing it closer in parity to autotools build git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1197146 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/etc')
-rw-r--r--cpp/etc/CMakeLists.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/cpp/etc/CMakeLists.txt b/cpp/etc/CMakeLists.txt
index 03121b364a..014842c9c7 100644
--- a/cpp/etc/CMakeLists.txt
+++ b/cpp/etc/CMakeLists.txt
@@ -17,4 +17,16 @@
# under the License.
#
-install(FILES qpidd.conf qpidc.conf DESTINATION ${QPID_INSTALL_CONFDIR})
+install(FILES qpidc.conf
+ DESTINATION ${QPID_INSTALL_CONFDIR}
+ COMPONENT ${QPID_COMPONENT_CLIENT})
+install(FILES qpidd.conf
+ DESTINATION ${QPID_INSTALL_CONFDIR}
+ COMPONENT ${QPID_COMPONENT_BROKER})
+if (BUILD_SASL)
+ install(FILES sasl2/qpidd.conf
+ DESTINATION ${QPID_INSTALL_SASLDIR}
+ COMPONENT ${QPID_COMPONENT_BROKER}
+ RENAME ${BROKER_SASL_NAME}.conf)
+endif (BUILD_SASL)
+