annotate tools/llvm-pdbutil/CMakeLists.txt @ 134:3a76565eade5 LLVM5.0.1

update 5.0.1
author mir3636
date Sat, 17 Feb 2018 09:57:20 +0900
parents 803732b1fca8
children c2174574ed3a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
121
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
1 set(LLVM_LINK_COMPONENTS
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
2 BinaryFormat
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
3 DebugInfoCodeView
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
4 DebugInfoMSF
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
5 DebugInfoPDB
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
6 Object
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
7 ObjectYAML
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
8 Support
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
9 )
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
10
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
11 add_llvm_tool(llvm-pdbutil
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
12 Analyze.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
13 BytesOutputStyle.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
14 Diff.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
15 DiffPrinter.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
16 DumpOutputStyle.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
17 InputFile.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
18 llvm-pdbutil.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
19 FormatUtil.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
20 LinePrinter.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
21 MinimalSymbolDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
22 MinimalTypeDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
23 PdbYaml.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
24 PrettyBuiltinDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
25 PrettyClassDefinitionDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
26 PrettyClassLayoutGraphicalDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
27 PrettyCompilandDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
28 PrettyEnumDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
29 PrettyExternalSymbolDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
30 PrettyFunctionDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
31 PrettyTypeDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
32 PrettyTypedefDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
33 PrettyVariableDumper.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
34 StreamUtil.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
35 YAMLOutputStyle.cpp
803732b1fca8 LLVM 5.0
kono
parents:
diff changeset
36 )