From f98c7ac6e6dba8749fe2d83306a5cd5f2ee67dd6 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 13 Feb 2014 17:51:35 +0000 Subject: [PATCH] [CMake] Disable libclangTests.exe on win32 for now. libclangTests.exe cannot find libclang.dll since it is not on $PATH. llvm-svn: 201348 --- clang/unittests/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/clang/unittests/CMakeLists.txt b/clang/unittests/CMakeLists.txt index 9cb08005403a..cc1322699e50 100644 --- a/clang/unittests/CMakeLists.txt +++ b/clang/unittests/CMakeLists.txt @@ -22,4 +22,6 @@ if(CLANG_ENABLE_REWRITER) add_subdirectory(Format) add_subdirectory(Sema) endif() -add_subdirectory(libclang) +if(NOT WIN32) # FIXME:Investigating. + add_subdirectory(libclang) +endif() -- GitLab