• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS
2  DebugInfoCodeView
3  DebugInfoPDB
4  Object
5  Support
6  )
7
8add_llvm_tool(llvm-pdbdump
9  llvm-pdbdump.cpp
10  BuiltinDumper.cpp
11  ClassDefinitionDumper.cpp
12  CompilandDumper.cpp
13  EnumDumper.cpp
14  ExternalSymbolDumper.cpp
15  FunctionDumper.cpp
16  LinePrinter.cpp
17  LLVMOutputStyle.cpp
18  PdbYaml.cpp
19  TypeDumper.cpp
20  TypedefDumper.cpp
21  VariableDumper.cpp
22  YAMLOutputStyle.cpp
23  )
24
25if(LLVM_USE_SANITIZE_COVERAGE)
26  add_subdirectory(fuzzer)
27endif()
28