From 1cf13cdc2c06c74cac110b01329dc9c49bd5e794 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sat, 26 Sep 2009 01:21:38 +0000 Subject: [PATCH] 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 --- tools/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 () -- 2.40.0