summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-02-10 03:24:28 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-02-10 03:24:28 +0000
commit70fda366a994138a1e823d6a6d79ac5f5e0a189c (patch)
tree37b04e5c4e28fc6454194d970c29723df91a423b
parentb1e7bec958497170f4767024eb7f5ab04b665c4a (diff)
downloadllvm-70fda366a994138a1e823d6a6d79ac5f5e0a189c.tar.gz
llvm-70fda366a994138a1e823d6a6d79ac5f5e0a189c.tar.bz2
llvm-70fda366a994138a1e823d6a6d79ac5f5e0a189c.tar.xz
[CMake] LLVMProcessSources.cmake: Prune add_file_dependencies to ${TABLEGEN_OUTPUT}.
I am sure it'd not be required any more. In trunk, all of tablegen's users depend on ${TABLEGEN_OUTPUT} as not file dependency but inter-target dependency. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201063 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--cmake/modules/LLVMProcessSources.cmake8
1 files changed, 0 insertions, 8 deletions
diff --git a/cmake/modules/LLVMProcessSources.cmake b/cmake/modules/LLVMProcessSources.cmake
index 296ce925b0..08b9c8e07d 100644
--- a/cmake/modules/LLVMProcessSources.cmake
+++ b/cmake/modules/LLVMProcessSources.cmake
@@ -42,14 +42,6 @@ function(llvm_process_sources OUT_VAR)
cmake_parse_arguments(ARG "" "" "ADDITIONAL_HEADERS" ${ARGN})
set(sources ${ARG_UNPARSED_ARGUMENTS})
llvm_check_source_file_list( ${sources} )
- # 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)
if( MSVC_IDE OR XCODE )
# This adds .td and .h files to the Visual Studio solution:
add_td_sources(sources)