aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/API/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/API/CMakeLists.txt')
-rw-r--r--lldb/unittests/API/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/unittests/API/CMakeLists.txt b/lldb/unittests/API/CMakeLists.txt
index 06ac492..b86054f 100644
--- a/lldb/unittests/API/CMakeLists.txt
+++ b/lldb/unittests/API/CMakeLists.txt
@@ -2,13 +2,17 @@ add_lldb_unittest(APITests
SBCommandInterpreterTest.cpp
SBLineEntryTest.cpp
SBMutexTest.cpp
+ SBBreakpointClearConditionTest.cpp
+
+ SBAPITEST
LINK_LIBS
liblldb
)
# Build with -Wdocumentation. This relies on the tests including all the API
-# headers through API/LLDB.h.
+# headers through API/LLDB.h. It also means that the API tests cannot include
+# private headers.
check_cxx_compiler_flag("-Wdocumentation"
CXX_SUPPORTS_DOCUMENTATION)
if (CXX_SUPPORTS_DOCUMENTATION)