[cmake] Delete redundant install command for clang-refactor.

Summary: Install targets for clang tools are controlled by
CLANG_BUILD_TOOLS, and when OFF, cmake issues the following warning:

WARNING: Target "clang-refactor" has EXCLUDE_FROM_ALL set and will not
be built by default but an install rule has been provided for it.
CMake does not define behavior for this case.

Differential Revision: https://reviews.llvm.org/D41807

llvm-svn: 322147
This commit is contained in:
Don Hinton 2018-01-10 01:00:28 +00:00
parent fe6c9cbb24
commit 050b4b05a0

View File

@ -20,5 +20,3 @@ target_link_libraries(clang-refactor
clangToolingCore
clangToolingRefactor
)
install(TARGETS clang-refactor RUNTIME DESTINATION bin)