From 29cb1bacd503d8178bcdb32fca51a208d09af027 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 20 Jul 2013 11:07:30 +0000 Subject: [PATCH] [CMAKE] - Fix MSVC 64 bit host-tools build svn path=/trunk/; revision=59536 --- reactos/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/CMakeLists.txt b/reactos/CMakeLists.txt index 41cda13657f..201c4e3dd58 100644 --- a/reactos/CMakeLists.txt +++ b/reactos/CMakeLists.txt @@ -65,7 +65,9 @@ if(NOT CMAKE_CROSSCOMPILING) include_directories(include/host) - add_subdirectory(dll/win32/dbghelp) + if(NOT MSVC) + add_subdirectory(dll/win32/dbghelp) + endif() add_subdirectory(tools) add_subdirectory(lib)