24 lines
405 B
CMake
24 lines
405 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
${LLVM_TARGETS_TO_BUILD}
|
||
|
Object
|
||
|
Option
|
||
|
Support
|
||
|
TextAPI
|
||
|
Core
|
||
|
BinaryFormat
|
||
|
)
|
||
|
|
||
|
set(LLVM_TARGET_DEFINITIONS LipoOpts.td)
|
||
|
tablegen(LLVM LipoOpts.inc -gen-opt-parser-defs)
|
||
|
add_public_tablegen_target(LipoOptsTableGen)
|
||
|
|
||
|
add_llvm_tool(llvm-lipo
|
||
|
llvm-lipo.cpp
|
||
|
DEPENDS
|
||
|
LipoOptsTableGen
|
||
|
)
|
||
|
|
||
|
if(LLVM_INSTALL_CCTOOLS_SYMLINKS)
|
||
|
add_llvm_tool_symlink(lipo llvm-lipo)
|
||
|
endif()
|