[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / tools / llvm-cxxfilt / CMakeLists.txt
blob367744beb9b60e898b0bc63a4380548e58572c0d
1 set(LLVM_LINK_COMPONENTS
2   Demangle
3   Option
4   Support
5   )
7 set(LLVM_TARGET_DEFINITIONS Opts.td)
8 tablegen(LLVM Opts.inc -gen-opt-parser-defs)
9 add_public_tablegen_target(CxxfiltOptsTableGen)
11 add_llvm_tool(llvm-cxxfilt
12   llvm-cxxfilt.cpp
14   DEPENDS
15   CxxfiltOptsTableGen
16   GENERATE_DRIVER
17   )
19 if(LLVM_INSTALL_BINUTILS_SYMLINKS)
20   add_llvm_tool_symlink(c++filt llvm-cxxfilt)
21 endif()