xref: /llvm-project/llvm/tools/llvm-dwp/CMakeLists.txt (revision 668e33c6401abe7844691fb7d47a3cf2d2012dbc)
1set(LLVM_LINK_COMPONENTS
2  AllTargetsCodeGens
3  AllTargetsDescs
4  AllTargetsInfos
5  DebugInfoDWARF
6  DWP
7  MC
8  Object
9  Option
10  Support
11  TargetParser
12  )
13
14set(LLVM_TARGET_DEFINITIONS Opts.td)
15tablegen(LLVM Opts.inc -gen-opt-parser-defs)
16add_public_tablegen_target(DwpOptsTableGen)
17
18add_llvm_tool(llvm-dwp
19  llvm-dwp.cpp
20
21  DEPENDS
22  intrinsics_gen
23  DwpOptsTableGen
24  GENERATE_DRIVER
25  )
26
27if(LLVM_INSTALL_BINUTILS_SYMLINKS)
28  add_llvm_tool_symlink(dwp llvm-dwp)
29endif()
30