[clang-tools-extra] r278977 - Revert "[Include-fixer] Install executables and support scripts"

Zachary Turner via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 17 13:56:47 PDT 2016


Author: zturner
Date: Wed Aug 17 15:56:47 2016
New Revision: 278977

URL: http://llvm.org/viewvc/llvm-project?rev=278977&view=rev
Log:
Revert "[Include-fixer] Install executables and support scripts"

This reverts commit b725a314a9b7f746c37f70909ec3c4dcb6d9f6b5.

The patch that made this test work needed to be reverted, so this
test needs to be reverted as well.

Modified:
    clang-tools-extra/trunk/include-fixer/find-all-symbols/tool/CMakeLists.txt
    clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt

Modified: clang-tools-extra/trunk/include-fixer/find-all-symbols/tool/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/include-fixer/find-all-symbols/tool/CMakeLists.txt?rev=278977&r1=278976&r2=278977&view=diff
==============================================================================
--- clang-tools-extra/trunk/include-fixer/find-all-symbols/tool/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/include-fixer/find-all-symbols/tool/CMakeLists.txt Wed Aug 17 15:56:47 2016
@@ -1,10 +1,8 @@
 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
 
-add_clang_executable(find-all-symbols
-  FindAllSymbolsMain.cpp
-  )
-
+add_clang_executable(find-all-symbols FindAllSymbolsMain.cpp)
 target_link_libraries(find-all-symbols
+
   clangAST
   clangASTMatchers
   clangBasic
@@ -13,10 +11,3 @@ target_link_libraries(find-all-symbols
   clangTooling
   findAllSymbols
   )
-
-install(TARGETS find-all-symbols
-  RUNTIME DESTINATION bin)
-
-install(PROGRAMS run-find-all-symbols.py
-  DESTINATION share/clang
-  COMPONENT find-all-symbols)

Modified: clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt?rev=278977&r1=278976&r2=278977&view=diff
==============================================================================
--- clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt Wed Aug 17 15:56:47 2016
@@ -1,9 +1,6 @@
 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
 
-add_clang_executable(clang-include-fixer
-  ClangIncludeFixer.cpp
-  )
-
+add_clang_executable(clang-include-fixer ClangIncludeFixer.cpp)
 target_link_libraries(clang-include-fixer
   clangBasic
   clangFormat
@@ -14,13 +11,3 @@ target_link_libraries(clang-include-fixe
   clangToolingCore
   findAllSymbols
   )
-
-install(TARGETS clang-include-fixer
-  RUNTIME DESTINATION bin)
-
-install(PROGRAMS clang-include-fixer.el
-  DESTINATION share/clang
-  COMPONENT clang-include-fixer)
-install(PROGRAMS clang-include-fixer.py
-  DESTINATION share/clang
-  COMPONENT clang-include-fixer)




More information about the cfe-commits mailing list