Jonas Devlieghere ac1ea0d3da [lldb/Plugins] Remove PLUGIN from libraries that aren't really plugins.
Although their name and location suggests otherwise, these libraries are
not really plugins but rather support the real plugins.
2020-02-17 19:40:00 -08:00

26 lines
482 B
CMake

add_lldb_library(lldbPluginSymbolFileNativePDB
CodeViewRegisterMapping.cpp
CompileUnitIndex.cpp
DWARFLocationExpression.cpp
PdbAstBuilder.cpp
PdbFPOProgramToDWARFExpression.cpp
PdbIndex.cpp
PdbSymUid.cpp
PdbUtil.cpp
SymbolFileNativePDB.cpp
UdtRecordCompleter.cpp
LINK_LIBS
lldbCore
lldbSymbol
lldbUtility
lldbPluginTypeSystemClang
CLANG_LIBS
clangAST
clangLex
LINK_COMPONENTS
DebugInfoCodeView
DebugInfoPDB
Support
)