diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-08-23 18:28:10 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-08-23 18:28:10 +0000 |
commit | b7f81d372a884453f821a3764028771c4896c3be (patch) | |
tree | 6443d917889842d54403c1c6cb82cf3eaa768444 /cmake | |
parent | 3eb7322ca15e61f002be95341f74d1df8c1146bb (diff) | |
download | external_llvm-b7f81d372a884453f821a3764028771c4896c3be.zip external_llvm-b7f81d372a884453f821a3764028771c4896c3be.tar.gz external_llvm-b7f81d372a884453f821a3764028771c4896c3be.tar.bz2 |
CMake: don't install tablegen
Since it's an llvm-internal tool, we shouldn't install it.
(This depends on Clang r189127 and lld r189128.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/modules/TableGen.cmake | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cmake/modules/TableGen.cmake b/cmake/modules/TableGen.cmake index 7a1d4a1..13a7568 100644 --- a/cmake/modules/TableGen.cmake +++ b/cmake/modules/TableGen.cmake @@ -126,6 +126,4 @@ macro(add_tablegen target project) if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD AND NOT BEOS ) target_link_libraries(${target} pthread) endif() - - install(TARGETS ${target} RUNTIME DESTINATION bin) endmacro() |