[clang-tools-extra] r253310 - modularize: add install rule
Saleem Abdulrasool via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 16 21:09:18 PST 2015
Author: compnerd
Date: Mon Nov 16 23:09:18 2015
New Revision: 253310
URL: http://llvm.org/viewvc/llvm-project?rev=253310&view=rev
Log:
modularize: add install rule
This allows modularize to be installed. Previously, no install rule would be
created for it.
Modified:
clang-tools-extra/trunk/modularize/CMakeLists.txt
Modified: clang-tools-extra/trunk/modularize/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/modularize/CMakeLists.txt?rev=253310&r1=253309&r2=253310&view=diff
==============================================================================
--- clang-tools-extra/trunk/modularize/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/modularize/CMakeLists.txt Mon Nov 16 23:09:18 2015
@@ -19,3 +19,7 @@ target_link_libraries(modularize
clangLex
clangTooling
)
+
+install(TARGETS modularize
+ RUNTIME DESTINATION bin
+ COMPONENT clang-extras)
More information about the cfe-commits
mailing list