Skip to content

Commit 1c50ee5

Browse files
[lit] Add missing split-file dependency
There was a recent patch that added in some tests to the lit test suite that use split-file. An explicit dependency in CMake was not added, which led to check-lit not working if being run without doing a full build first. This patch explicitly adds the dependency inside the CMake file to fix this configuration.
1 parent e812142 commit 1c50ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ add_custom_target(prepare-check-lit
2222
# Add rules for lit's own test suite
2323
add_lit_testsuite(check-lit "Running lit's tests"
2424
${CMAKE_CURRENT_BINARY_DIR}
25-
DEPENDS "FileCheck" "not" "prepare-check-lit"
25+
DEPENDS "FileCheck" "not" "split-file" "prepare-check-lit"
2626
)
2727

2828
# For IDEs

0 commit comments

Comments
 (0)