diff options
author | Stephen D. Huston <shuston@apache.org> | 2010-02-11 15:57:34 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2010-02-11 15:57:34 +0000 |
commit | d9e01567876cbe505c3af5e6fd083f6af3256ae0 (patch) | |
tree | 7cf0c313df03ec93e5d5a6275b2bb854c45eaed8 /cpp | |
parent | ddbad5ba3e5c98804490d323afc6b72997aa4ed8 (diff) | |
download | qpid-python-d9e01567876cbe505c3af5e6fd083f6af3256ae0.tar.gz |
Add EventImpl.cpp, .h for qmfengine source from patch in QPID-2401.
When adding qmfconsoled.dll to Windows installer, pick it up from correct directory.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@909039 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cpp/src/CMakeLists.txt b/cpp/src/CMakeLists.txt index f10940df24..951f225a2b 100644 --- a/cpp/src/CMakeLists.txt +++ b/cpp/src/CMakeLists.txt @@ -844,6 +844,8 @@ set (qmfengine_SOURCES qmf/engine/ConnectionSettingsImpl.h qmf/engine/ConsoleImpl.cpp qmf/engine/ConsoleImpl.h + qmf/engine/EventImpl.cpp + qmf/Engine/EventImpl.h qmf/engine/MessageImpl.cpp qmf/engine/MessageImpl.h qmf/engine/ObjectIdImpl.cpp @@ -921,9 +923,9 @@ install (TARGETS qmfconsole # On Windows, also grab the debug version of qmfconsole. if (WIN32) install (PROGRAMS - ${CMAKE_CURRENT_BINARY_DIR}/Release/qmfconsoled.dll - ${CMAKE_CURRENT_BINARY_DIR}/Release/qmfconsoled.lib - ${CMAKE_CURRENT_BINARY_DIR}/Release/qmfconsoled.pdb + ${CMAKE_CURRENT_BINARY_DIR}/Debug/qmfconsoled.dll + ${CMAKE_CURRENT_BINARY_DIR}/Debug/qmfconsoled.lib + ${CMAKE_CURRENT_BINARY_DIR}/Debug/qmfconsoled.pdb DESTINATION ${QPID_INSTALL_LIBDIR} COMPONENT ${QPID_COMPONENT_QMF}) endif (WIN32) |