From: Zachary Turner Date: Fri, 30 Jan 2015 18:08:05 +0000 (+0000) Subject: Really really don't build llvm-pdbdump on MSVC < 2013. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=de20f59a2a87ca99d2d718779b22e0b4259785e4;p=oota-llvm.git Really really don't build llvm-pdbdump on MSVC < 2013. I thought it was enough to just not add the tool subdirectory, but apparently I need to explicitly mark it ignore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227587 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index b496f5f27b7..30b12900035 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -66,6 +66,8 @@ if(MSVC AND NOT(MSVC_VERSION LESS 1800)) # MSVC 2013 and higher. Since this is strictly a utility, and since we hope # to drop support for MSVC 2012 soon, don't build this for MSVC < 2013. add_llvm_tool_subdirectory(llvm-pdbdump) +else() + ignore_llvm_tool_subdirectory(llbm-pdbdump) endif() if(NOT CYGWIN AND LLVM_ENABLE_PIC)