]> granicus.if.org Git - clang/commitdiff
[CMake] Disable libclangTests.exe on win32 for now.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 13 Feb 2014 17:51:35 +0000 (17:51 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 13 Feb 2014 17:51:35 +0000 (17:51 +0000)
libclangTests.exe cannot find libclang.dll since it is not on $PATH.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201348 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/CMakeLists.txt

index 9cb08005403a1aa05e25ec422c50391554332111..cc1322699e50fa8b682131670dafccbdad194798 100644 (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()