diff options
author | Andrew Stitcher <astitcher@apache.org> | 2010-02-26 21:31:37 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2010-02-26 21:31:37 +0000 |
commit | 7d3d9ff6dc3e13690fceb112594e1ee32a9d5ed4 (patch) | |
tree | d35a0a28d9c120cd7c437dc5b6192f846937f5b0 /cpp | |
parent | b462279113238af55b05b381e95e9f5371e28304 (diff) | |
download | qpid-python-7d3d9ff6dc3e13690fceb112594e1ee32a9d5ed4.tar.gz |
Small Hack to allow Windows to compile without error until the qmfv2 changes remove the ResilientConnection.cpp file.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@916824 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/CMakeLists.txt b/cpp/src/CMakeLists.txt index 62bab239be..a7078bea47 100644 --- a/cpp/src/CMakeLists.txt +++ b/cpp/src/CMakeLists.txt @@ -855,7 +855,6 @@ set (qmfengine_SOURCES qmf/engine/Protocol.h qmf/engine/QueryImpl.cpp qmf/engine/QueryImpl.h - qmf/engine/ResilientConnection.cpp qmf/engine/SequenceManager.cpp qmf/engine/SequenceManager.h qmf/engine/SchemaImpl.cpp @@ -863,6 +862,10 @@ set (qmfengine_SOURCES qmf/engine/ValueImpl.cpp qmf/engine/ValueImpl.h ) +if (NOT WIN32) + list(APPEND qmfengine_SOURCES qmf/engine/ResilientConnection.cpp) +endif (NOT WIN32) + add_library (qmfengine SHARED ${qmfengine_SOURCES}) target_link_libraries (qmfengine qpidclient) set_target_properties (qmfengine PROPERTIES |