2016-11-11 04:44:12 +01:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
2016-11-11 15:17:37 +01:00
|
|
|
Core
|
2016-11-11 04:44:12 +01:00
|
|
|
Object
|
2021-07-05 19:46:17 +02:00
|
|
|
Option
|
2016-11-11 15:17:37 +01:00
|
|
|
Support
|
2016-11-11 04:44:12 +01:00
|
|
|
)
|
|
|
|
|
2021-07-05 19:46:17 +02:00
|
|
|
set(LLVM_TARGET_DEFINITIONS Opts.td)
|
|
|
|
tablegen(LLVM Opts.inc -gen-opt-parser-defs)
|
|
|
|
add_public_tablegen_target(StringsOptsTableGen)
|
|
|
|
|
2016-11-11 04:44:12 +01:00
|
|
|
add_llvm_tool(llvm-strings
|
|
|
|
llvm-strings.cpp
|
2021-07-05 19:46:17 +02:00
|
|
|
DEPENDS
|
|
|
|
StringsOptsTableGen
|
2016-11-11 04:44:12 +01:00
|
|
|
)
|
|
|
|
|
2017-11-02 22:43:32 +01:00
|
|
|
if(LLVM_INSTALL_BINUTILS_SYMLINKS)
|
|
|
|
add_llvm_tool_symlink(strings llvm-strings)
|
|
|
|
endif()
|