diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-02-04 03:47:50 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-02-04 03:47:50 +0000 |
commit | ba6ac919951b8c09c8c22bcdd96dabc5cc30c112 (patch) | |
tree | ae1e9ad9e274c3c116b9f88f554ae61a72867945 | |
parent | 92e946630d5f9bb092853b93501387dd216899b9 (diff) | |
download | external_llvm-ba6ac919951b8c09c8c22bcdd96dabc5cc30c112.zip external_llvm-ba6ac919951b8c09c8c22bcdd96dabc5cc30c112.tar.gz external_llvm-ba6ac919951b8c09c8c22bcdd96dabc5cc30c112.tar.bz2 |
Add the tablegenned files to the `clean' target.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124854 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | cmake/modules/TableGen.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/modules/TableGen.cmake b/cmake/modules/TableGen.cmake index 7383119..9d67137 100644 --- a/cmake/modules/TableGen.cmake +++ b/cmake/modules/TableGen.cmake @@ -35,6 +35,11 @@ macro(tablegen ofn) DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${ofn}.tmp COMMENT "" ) + + # `make clean' must remove all those generated files: + set_property(DIRECTORY APPEND + PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${ofn}.tmp ${ofn}) + set(TABLEGEN_OUTPUT ${TABLEGEN_OUTPUT} ${CMAKE_CURRENT_BINARY_DIR}/${ofn}) set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/${ofn} PROPERTIES GENERATED 1) |