mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
375f9ee2b6
This reuses the CVTypeDumper from libcodeview to dump full information about type records within a PDB file. Differential Revision: http://reviews.llvm.org/D20022 Reviewed By: rnk llvm-svn: 268808
21 lines
345 B
CMake
21 lines
345 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
DebugInfoCodeView
|
|
DebugInfoPDB
|
|
Object
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-pdbdump
|
|
llvm-pdbdump.cpp
|
|
BuiltinDumper.cpp
|
|
ClassDefinitionDumper.cpp
|
|
CompilandDumper.cpp
|
|
EnumDumper.cpp
|
|
ExternalSymbolDumper.cpp
|
|
FunctionDumper.cpp
|
|
LinePrinter.cpp
|
|
TypeDumper.cpp
|
|
TypedefDumper.cpp
|
|
VariableDumper.cpp
|
|
)
|