summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2013-11-18 01:16:42 +0000
committerCharles E. Rolke <chug@apache.org>2013-11-18 01:16:42 +0000
commit58633f8da8690ccdf915f00c1b809752464483d3 (patch)
tree610e889cddc7c4491090c83f060b88448751201a /qpid/cpp
parentfd469905e39caa963c959f22f416dc57192b696e (diff)
downloadqpid-python-58633f8da8690ccdf915f00c1b809752464483d3.tar.gz
QPID-5349: qpid-proton.dll is not installed in \bin
ampq.cmake installed the file in \lib and not in \bin with the rest of the dlls. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1542880 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/amqp.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/amqp.cmake b/qpid/cpp/src/amqp.cmake
index 1265b3a6a7..14b660dab1 100644
--- a/qpid/cpp/src/amqp.cmake
+++ b/qpid/cpp/src/amqp.cmake
@@ -171,11 +171,11 @@ if (BUILD_AMQP)
set(proton_dlld "${PROTON_LIBRARY_DIRS}/${PROTON_LIBRARIES}d.dll")
install (PROGRAMS ${proton_dll}
- DESTINATION ${QPID_INSTALL_LIBDIR}
+ DESTINATION ${QPID_INSTALL_BINDIR}
COMPONENT ${QPID_COMPONENT_COMMON}
CONFIGURATIONS Release|MinSizeRel|RelWithDebInfo)
install (PROGRAMS ${proton_dlld}
- DESTINATION ${QPID_INSTALL_LIBDIR}
+ DESTINATION ${QPID_INSTALL_BINDIR}
COMPONENT ${QPID_COMPONENT_COMMON}
CONFIGURATIONS Debug)
endif (WIN32)