diff options
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/test/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/test/CMakeLists.txt b/lldb/test/CMakeLists.txt index 5ca0217e986..9826de38c3c 100644 --- a/lldb/test/CMakeLists.txt +++ b/lldb/test/CMakeLists.txt @@ -15,6 +15,11 @@ endfunction() set(LLDB_TEST_DEPS lldb) +# darwin-debug is an hard dependency for the testsuite. +if (CMAKE_SYSTEM_NAME MATCHES "Darwin") + list(APPEND LLDB_TEST_DEPS darwin-debug) +endif() + if(TARGET lldb-server) list(APPEND LLDB_TEST_DEPS lldb-server) endif() |