From: Daniel Dunbar Date: Sat, 26 Sep 2009 01:21:38 +0000 (+0000) Subject: Disable c-index-test on MSVC until someone figures out the real problem. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1cf13cdc2c06c74cac110b01329dc9c49bd5e794;p=clang Disable c-index-test on MSVC until someone figures out the real problem. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82830 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 222512af15..cb2aa2004c 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -6,4 +6,7 @@ if (CLANG_BUILD_EXPERIMENTAL) add_subdirectory(wpa) endif () add_subdirectory(CIndex) -add_subdirectory(c-index-test) +if (MSVC) +else () + add_subdirectory(c-index-test) +endif ()