diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-10-27 19:34:35 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-10-27 19:34:35 +0000 |
commit | f97401442c115d81cd2e78a03587e83e45b7de3f (patch) | |
tree | a540ec4bed1e410049cf62213d8ce12ca4c782cb /cpp/src | |
parent | 7f4e587c5c53a9c9a32741fe06ebd7d890e207de (diff) | |
download | qpid-python-f97401442c115d81cd2e78a03587e83e45b7de3f.tar.gz |
Add install steps.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@830311 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/store/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/qpid/store/CMakeLists.txt b/cpp/src/qpid/store/CMakeLists.txt index 452d4b7cf0..d5cf8abc27 100644 --- a/cpp/src/qpid/store/CMakeLists.txt +++ b/cpp/src/qpid/store/CMakeLists.txt @@ -49,6 +49,9 @@ if (CMAKE_SYSTEM_NAME STREQUAL Windows) endif (CMAKE_SYSTEM_NAME STREQUAL Windows) set_target_properties (store PROPERTIES VERSION ${qpidc_version}) +install (TARGETS store # RUNTIME + DESTINATION ${QPIDD_MODULE_DIR} + COMPONENT ${QPID_COMPONENT_BROKER}) # Build the MS SQL Storage Provider plugin set (mssql_default ON) @@ -71,4 +74,7 @@ if (BUILD_MSSQL) ms-sql/State.cpp ms-sql/VariantHelper.cpp) target_link_libraries (mssql_store qpidcommon ${Boost_PROGRAM_OPTIONS_LIBRARY}) + install (TARGETS mssql_store # RUNTIME + DESTINATION ${QPIDD_MODULE_DIR} + COMPONENT ${QPID_COMPONENT_BROKER}) endif (BUILD_MSSQL) |