summaryrefslogtreecommitdiff
path: root/cmake/modules/LLVMProcessSources.cmake
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2008-11-14 22:06:14 +0000
committerOscar Fuentes <ofv@wanadoo.es>2008-11-14 22:06:14 +0000
commit1bbdd4645be3642f55d7bdcd21e13e23e59cd884 (patch)
tree9c89fea259bef114d5cd7fd1ee756e35c17f198d /cmake/modules/LLVMProcessSources.cmake
parent7e6a1bc0fa35202ddfd2229821370d6061e3e1f9 (diff)
downloadllvm-1bbdd4645be3642f55d7bdcd21e13e23e59cd884.tar.gz
llvm-1bbdd4645be3642f55d7bdcd21e13e23e59cd884.tar.bz2
llvm-1bbdd4645be3642f55d7bdcd21e13e23e59cd884.tar.xz
CMake: Fixed dependencies of .cpp source files on .td and tablegenned
files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/modules/LLVMProcessSources.cmake')
-rw-r--r--cmake/modules/LLVMProcessSources.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmake/modules/LLVMProcessSources.cmake b/cmake/modules/LLVMProcessSources.cmake
new file mode 100644
index 0000000000..0dad3fb740
--- /dev/null
+++ b/cmake/modules/LLVMProcessSources.cmake
@@ -0,0 +1,13 @@
+include(AddFileDependencies)
+
+function(llvm_process_sources)
+ set( sources ${ARGN} )
+ # Create file dependencies on the tablegenned files, if any. Seems
+ # that this is not strictly needed, as dependencies of the .cpp
+ # sources on the tablegenned .inc files are detected and handled,
+ # but just in case...
+ foreach( s ${sources} )
+ set( f ${CMAKE_CURRENT_SOURCE_DIR}/${s} )
+ add_file_dependencies( ${f} ${TABLEGEN_OUTPUT} )
+ endforeach(s)
+endfunction(llvm_process_sources)