summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-09-13 17:52:38 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-09-13 17:52:38 +0000
commitbecf392e3bff4e547789633b4ad095b49e93684e (patch)
treea94b1dac8c5de748c9c8a96b309353ab8f9883aa /utils
parentf713384be52aae0ec1d0f19618f71cc345acb1f9 (diff)
downloadllvm-becf392e3bff4e547789633b4ad095b49e93684e.tar.gz
llvm-becf392e3bff4e547789633b4ad095b49e93684e.tar.bz2
llvm-becf392e3bff4e547789633b4ad095b49e93684e.tar.xz
CMake: Add llvm-lit to CMake build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113762 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/llvm-lit/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/llvm-lit/CMakeLists.txt b/utils/llvm-lit/CMakeLists.txt
new file mode 100644
index 0000000000..602cc881cd
--- /dev/null
+++ b/utils/llvm-lit/CMakeLists.txt
@@ -0,0 +1,12 @@
+configure_file(
+ llvm-lit.in
+ ${LLVM_TOOLS_BINARY_DIR}/llvm-lit
+ )
+
+install(FILES
+ ${LLVM_TOOLS_BINARY_DIR}/llvm-lit
+ DESTINATION bin
+ PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
+ GROUP_READ GROUP_EXECUTE
+ WORLD_READ WORLD_EXECUTE
+ )