1set(LLVM_LINK_COMPONENTS 2 Core 3 Object 4 Option 5 Support 6 ) 7 8set(LLVM_TARGET_DEFINITIONS Opts.td) 9tablegen(LLVM Opts.inc -gen-opt-parser-defs) 10add_public_tablegen_target(StringsOptsTableGen) 11 12add_llvm_tool(llvm-strings 13 llvm-strings.cpp 14 DEPENDS 15 StringsOptsTableGen 16 ) 17 18if(LLVM_INSTALL_BINUTILS_SYMLINKS) 19 add_llvm_tool_symlink(strings llvm-strings) 20endif() 21