1set(LLVM_TARGET_DEFINITIONS Options.td)
2tablegen(LLVM Options.inc -gen-opt-parser-defs)
3add_public_tablegen_target(DwarfutilTableGen)
4
5set(LLVM_LINK_COMPONENTS
6  DebugInfoDWARF
7  DWARFLinker
8  DWARFLinkerParallel
9  MC
10  ObjCopy
11  Object
12  Option
13  Support
14  Target
15  TargetParser
16  AllTargetsCodeGens
17  AllTargetsDescs
18  AllTargetsInfos
19  )
20
21add_llvm_tool(llvm-dwarfutil
22  llvm-dwarfutil.cpp
23  DebugInfoLinker.cpp
24
25  DEPENDS
26  intrinsics_gen
27  ${tablegen_deps}
28  )
29