[CMake] Disable libclangTests.exe on win32 for now.

libclangTests.exe cannot find libclang.dll since it is not on $PATH.

llvm-svn: 201348
This commit is contained in:
NAKAMURA Takumi 2014-02-13 17:51:35 +00:00
parent b6f72b240f
commit f98c7ac6e6
1 changed files with 3 additions and 1 deletions

View File

@ -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()