brintos

brintos / llvm-project-archived public Read only

0
0
Text · 497 B · 6b0a119 Raw
24 lines · plain
1set(LLVM_LINK_COMPONENTS2  Option3  Support4  )5set(LLVM_TARGET_DEFINITIONS Opts.td)6tablegen(LLVM Opts.inc -gen-opt-parser-defs)7add_public_tablegen_target(DebugInfodOptsTableGen)8 9add_llvm_tool(llvm-debuginfod10  llvm-debuginfod.cpp11 12  DEPENDS13  DebugInfodOptsTableGen14  GENERATE_DRIVER15  )16 17if(NOT LLVM_TOOL_LLVM_DRIVER_BUILD)18  target_link_libraries(llvm-debuginfod PRIVATE LLVMDebuginfod)19endif()20 21if(LLVM_INSTALL_BINUTILS_SYMLINKS)22  add_llvm_tool_symlink(debuginfod llvm-debuginfod)23endif()24