Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion lldb/unittests/Core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
set(SWIFT_SOURCES
SwiftDemanglingPartsTest.cpp
)

set(LLVM_OPTIONAL_SOURCES ${SWIFT_SOURCES})
if (NOT LLDB_ENABLE_SWIFT_SUPPORT)
unset(SWIFT_SOURCES)
endif()

add_lldb_unittest(LLDBCoreTests
DebuggerTest.cpp
Expand All @@ -13,10 +21,11 @@ add_lldb_unittest(LLDBCoreTests
RichManglingContextTest.cpp
SourceLocationSpecTest.cpp
SourceManagerTest.cpp
SwiftDemanglingPartsTest.cpp
TelemetryTest.cpp
UniqueCStringMapTest.cpp

${SWIFT_SOURCES}

LINK_COMPONENTS
Support
Telemetry
Expand Down