summaryrefslogtreecommitdiff
path: root/cmake/modules/AddLLVM.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/modules/AddLLVM.cmake')
-rwxr-xr-xcmake/modules/AddLLVM.cmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index 78a21ada84..b5b74f0f16 100755
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -270,8 +270,13 @@ function(add_lit_target target comment)
add_custom_target(${target}
COMMAND ${LIT_COMMAND} ${ARG_DEFAULT_ARGS}
COMMENT "${comment}"
- DEPENDS ${ARG_DEPENDS}
)
+
+ # It would be nice to use the DEPENDS clause in add_custom_target above, but
+ # that has bugs with the CMake 2.8.0 installed on Ubuntu Lucid when the entry
+ # in the depends is another custom target. Instead we add them through an
+ # explicit add_dependencies.
+ add_dependencies(${target} ${ARG_DEPENDS})
endfunction()
# A function to add a set of lit test suites to be driven through 'check-*' targets.