Author: cliffjansen Date: Wed Jul 13 07:02:24 2011 New Revision: 1145886 URL: http://svn.apache.org/viewvc?rev=1145886&view=rev Log: qpid-3338 fix CMake variable to distinguish toolchains: msvc vs mingw Modified: qpid/branches/0.12/qpid/cpp/src/CMakeLists.txt Modified: qpid/branches/0.12/qpid/cpp/src/CMakeLists.txt URL: http://svn.apache.org/viewvc/qpid/branches/0.12/qpid/cpp/src/CMakeLists.txt?rev=1145886&r1=1145885&r2=1145886&view=diff ============================================================================== --- qpid/branches/0.12/qpid/cpp/src/CMakeLists.txt (original) +++ qpid/branches/0.12/qpid/cpp/src/CMakeLists.txt Wed Jul 13 07:02:24 2011 @@ -937,7 +937,7 @@ if (NOT QPID_GENERATED_HEADERS_IN_SOURCE endif (NOT QPID_GENERATED_HEADERS_IN_SOURCE) -if (_MSC_VER) +if (MSVC) # Install the DtcPlugin project and call it qpidxarm. set(AMQP_WCF_DIR ${qpid-cpp_SOURCE_DIR}/../wcf) set(qpidxarm_SOURCES ${AMQP_WCF_DIR}/src/Apache/Qpid/DtcPlugin/DtcPlugin.cpp) @@ -950,7 +950,7 @@ if (_MSC_VER) COMPONENT ${QPID_COMPONENT_CLIENT}) install_pdb (qpidxarm ${QPID_COMPONENT_CLIENT}) endif (EXISTS ${qpidxarm_SOURCES}) -endif (_MSC_VER) +endif (MSVC) set (qpidbroker_SOURCES ${mgen_broker_cpp} --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscribe@qpid.apache.org