summaryrefslogtreecommitdiff
path: root/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
commit087aa3a5c66f8915c999bda55c76e1ba51c52cf2 (patch)
tree39c23b54e517650058f2cacb440c6a6c94a58784 /cpp
parent920ef2f7d9ed082d9e8dd61309929e711166ef5e (diff)
downloadqpid-python-087aa3a5c66f8915c999bda55c76e1ba51c52cf2.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/qpid@1542880 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/amqp.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/amqp.cmake b/cpp/src/amqp.cmake
index 1265b3a6a7..14b660dab1 100644
--- a/cpp/src/amqp.cmake
+++ b/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)