Author: shuston
Date: Mon Jan 4 17:22:00 2010
New Revision: 895713
URL: http://svn.apache.org/viewvc?rev=895713&view=rev
Log:
When installing WCF DLLs on Windows, install the Release ones, not Debug.
Resolves QPID-2260.
Modified:
qpid/trunk/qpid/cpp/CMakeLists.txt
Modified: qpid/trunk/qpid/cpp/CMakeLists.txt
URL:
http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/CMakeLists.txt?rev=895713&r1=895712&r2=895713&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/CMakeLists.txt (original)
+++ qpid/trunk/qpid/cpp/CMakeLists.txt Mon Jan 4 17:22:00 2010
@@ -47,8 +47,8 @@
# The WCF/C++ client is built separately (it doesn't build via CMake)
# but is installed with the C++ components on Windows.
install (PROGRAMS
-
${CMAKE_SOURCE_DIR}/../wcf/src/Apache/Qpid/Channel/bin/Debug/Apache.Qpid.Channel.dll
-
${CMAKE_SOURCE_DIR}/../wcf/src/Apache/Qpid/Channel/bin/Debug/Apache.Qpid.Interop.dll
+
${CMAKE_SOURCE_DIR}/../wcf/src/Apache/Qpid/Channel/bin/Release/Apache.Qpid.Channel.dll
+
${CMAKE_SOURCE_DIR}/../wcf/src/Apache/Qpid/Channel/bin/Release/Apache.Qpid.Interop.dll
DESTINATION ${QPID_INSTALL_LIBDIR}
COMPONENT ${QPID_COMPONENT_CLIENT})
install (DIRECTORY ${CMAKE_SOURCE_DIR}/../wcf/samples/Channel
---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project: http://qpid.apache.org
Use/Interact: mailto:[email protected]