diff options
-rw-r--r-- | lldb/test/CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lldb/test/CMakeLists.txt b/lldb/test/CMakeLists.txt index 759006f818f..e5704f662f7 100644 --- a/lldb/test/CMakeLists.txt +++ b/lldb/test/CMakeLists.txt @@ -75,8 +75,16 @@ endif() # This works with standalone builds as they import the clang target. if(TARGET clang) add_lldb_test_dependency(clang) + + if(TARGET asan) + add_lldb_test_dependency(asan) + endif() + + if(TARGET tsan) + add_lldb_test_dependency(tsan) + endif() + if(APPLE) - # If we build clang, we should build libcxx. # FIXME: Standalone builds should import the cxx target as well. if(LLDB_BUILT_STANDALONE) # For now check that the include directory exists. |