commit | ef1ecb280afe0a9efd1b89c031e68be13b7ea5d7 | [log] [tgz] |
---|---|---|
author | Saleem Abdulrasool <compnerd@compnerd.org> | Tue Nov 17 05:09:18 2015 +0000 |
committer | Copybara-Service <copybara-worker@google.com> | Fri Sep 04 13:41:58 2020 -0700 |
tree | 2758b794649047642a47b45b38e76939c2d728cd | |
parent | 2d2b44d3b8c95f5e9bc0a2132587bdba4cc03321 [diff] |
modularize: add install rule This allows modularize to be installed. Previously, no install rule would be created for it. llvm-svn: 253310 GitOrigin-RevId: 9dc1b0f29d7f93536740038ff3264eeccb0a4d6d
diff --git a/modularize/CMakeLists.txt b/modularize/CMakeLists.txt index 7de809c..17d1eb1 100644 --- a/modularize/CMakeLists.txt +++ b/modularize/CMakeLists.txt
@@ -19,3 +19,7 @@ clangLex clangTooling ) + +install(TARGETS modularize + RUNTIME DESTINATION bin + COMPONENT clang-extras)