From: NAKAMURA Takumi Date: Wed, 23 Oct 2013 17:56:59 +0000 (+0000) Subject: llvm/tools/llvm-c-test should be built also on msvc. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=44c23939cf8d0f6bd77c1ee8cae5a1d13ad10f40;p=oota-llvm.git llvm/tools/llvm-c-test should be built also on msvc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193257 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 54f849c7069..12e10fd0bbd 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -39,11 +39,7 @@ add_llvm_tool_subdirectory(llvm-mcmarkup) add_llvm_tool_subdirectory(llvm-symbolizer) -if( NOT MSVC ) - add_llvm_tool_subdirectory(llvm-c-test) -else() - ignore_llvm_tool_subdirectory(llvm-c-test) -endif( NOT MSVC ) +add_llvm_tool_subdirectory(llvm-c-test) add_llvm_tool_subdirectory(obj2yaml) add_llvm_tool_subdirectory(yaml2obj)