[Lldb-commits] [lldb] dd63506 - [lldb/cmake] Fix linking of lldbSymbolHelpers for 9cb222e7
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 27 07:40:26 PDT 2020
Author: Pavel Labath
Date: 2020-08-27T16:40:17+02:00
New Revision: dd635062d867835cfe893698161277cc251b4456
URL: https://github.com/llvm/llvm-project/commit/dd635062d867835cfe893698161277cc251b4456
DIFF: https://github.com/llvm/llvm-project/commit/dd635062d867835cfe893698161277cc251b4456.diff
LOG: [lldb/cmake] Fix linking of lldbSymbolHelpers for 9cb222e7
I didn't find this locally because I have a /usr/include/gtest which is
similar enough to the bundled one to make things appear to work.
Added:
Modified:
lldb/unittests/TestingSupport/Symbol/CMakeLists.txt
Removed:
################################################################################
diff --git a/lldb/unittests/TestingSupport/Symbol/CMakeLists.txt b/lldb/unittests/TestingSupport/Symbol/CMakeLists.txt
index 38a518682853d..cdd65ca17fed2 100644
--- a/lldb/unittests/TestingSupport/Symbol/CMakeLists.txt
+++ b/lldb/unittests/TestingSupport/Symbol/CMakeLists.txt
@@ -1,4 +1,15 @@
set_property(DIRECTORY PROPERTY EXCLUDE_FROM_ALL ON)
add_lldb_library(lldbSymbolHelpers
YAMLModuleTester.cpp
+
+ LINK_LIBS
+ lldbCore
+ lldbHost
+ lldbPluginExpressionParserClang
+ lldbPluginSymbolFileDWARF
+ lldbPluginTypeSystemClang
+ lldbUtilityHelpers
+
+ LINK_COMPONENTS
+ ObjectYAML
)
More information about the lldb-commits
mailing list