[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / tools / dsymutil / CMakeLists.txt
blobf88e6db62c3883ac039911f26ddbe31a97c2b0d8
1 set(LLVM_TARGET_DEFINITIONS Options.td)
2 tablegen(LLVM Options.inc -gen-opt-parser-defs)
3 add_public_tablegen_target(DsymutilTableGen)
5 set(LLVM_LINK_COMPONENTS
6   AllTargetsAsmPrinters
7   AllTargetsCodeGens
8   AllTargetsDescs
9   AllTargetsInfos
10   AsmPrinter
11   DebugInfoDWARF
12   MC
13   Object
14   Option
15   Support
16   Target
17   )
19 add_llvm_tool(dsymutil
20   dsymutil.cpp
21   BinaryHolder.cpp
22   CFBundle.cpp
23   CompileUnit.cpp
24   DebugMap.cpp
25   DeclContext.cpp
26   DwarfLinker.cpp
27   DwarfStreamer.cpp
28   MachODebugMapParser.cpp
29   MachOUtils.cpp
30   NonRelocatableStringpool.cpp
31   SymbolMap.cpp
33   DEPENDS
34   intrinsics_gen
35   ${tablegen_deps}
36   )
38 if(APPLE)
39   target_link_libraries(dsymutil PRIVATE "-framework CoreFoundation")
40 endif(APPLE)