diff options
author | Douglas Gregor <doug.gregor@gmail.com> | 2009-06-25 05:03:06 +0000 |
---|---|---|
committer | Douglas Gregor <doug.gregor@gmail.com> | 2009-06-25 05:03:06 +0000 |
commit | f9208f860861a4bebea88de275cb4678e0bd43ad (patch) | |
tree | 1ccb97258a10888a5622ecbc321fc97be7b16d97 /cmake/modules | |
parent | 0c4aee401a71b6e39bb7538f933f5737ac08798c (diff) | |
download | external_llvm-f9208f860861a4bebea88de275cb4678e0bd43ad.zip external_llvm-f9208f860861a4bebea88de275cb4678e0bd43ad.tar.gz external_llvm-f9208f860861a4bebea88de275cb4678e0bd43ad.tar.bz2 |
Add missing dependencies to the CMake build system.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74161 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/modules')
-rw-r--r-- | cmake/modules/TableGen.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/modules/TableGen.cmake b/cmake/modules/TableGen.cmake index 16c732b..0a96b55 100644 --- a/cmake/modules/TableGen.cmake +++ b/cmake/modules/TableGen.cmake @@ -20,4 +20,6 @@ macro(tablegen ofn) COMMENT "Building ${ofn}..." ) set(TABLEGEN_OUTPUT ${TABLEGEN_OUTPUT} ${CMAKE_CURRENT_BINARY_DIR}/${ofn}) + set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${ofn} + PROPERTIES GENERATED 1) endmacro(tablegen) |