Files
clang-p2996/lldb/unittests/TestingSupport/CMakeLists.txt
Pavel Labath 0a2213c6eb [lldb/cmake] Fix testing support library dependencies
lldbUtilityHelpers does not depend on lldbSymbolHelpers. Remove that
dependency, and add direct lldbSymbolHelpers dependencies where needed.
2020-09-15 13:32:08 +02:00

16 lines
258 B
CMake

set_property(DIRECTORY PROPERTY EXCLUDE_FROM_ALL ON)
add_lldb_library(lldbUtilityHelpers
MockTildeExpressionResolver.cpp
TestUtilities.cpp
LINK_LIBS
lldbUtility
gtest
LINK_COMPONENTS
Support
ObjectYAML
)
add_subdirectory(Symbol)