diff options
author | Andrew Stitcher <astitcher@apache.org> | 2014-06-17 06:22:30 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2014-06-17 06:22:30 +0000 |
commit | b9a033ffb01107cc26162c98dbe21987e0983fd8 (patch) | |
tree | d601d1e5d939665a4bd5bf4fb5d53fc3dd189d3e | |
parent | 29db4fab08d6f8ee5cfe3d72e4a2ca43ef63a441 (diff) | |
download | qpid-python-b9a033ffb01107cc26162c98dbe21987e0983fd8.tar.gz |
QPID-5829: Properly fix the CMake conditional
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1603067 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 897d649e4d..41cfdeb260 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -208,7 +208,7 @@ if (MSVC) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/bindings/qpid/dotnet/src/sessionreceiver/Properties/sessionreceiver-AssemblyInfo-template.cs ${CMAKE_CURRENT_BINARY_DIR}/src/windows/generated_src/sessionreceiver-AssemblyInfo.cs) endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/bindings/qpid/dotnet/src) -endif (CMAKE_CXX_COMPILER_ID STREQUAL MSVC) +endif (MSVC) # Subdirectories add_subdirectory(managementgen) |