forked from OSchip/llvm-project
27 lines
396 B
CMake
27 lines
396 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
Analysis
|
||
|
BinaryFormat
|
||
|
BitReader
|
||
|
BitstreamReader
|
||
|
Core
|
||
|
Demangle
|
||
|
MC
|
||
|
MCParser
|
||
|
Object
|
||
|
Option
|
||
|
Remarks
|
||
|
Support
|
||
|
TextAPI
|
||
|
)
|
||
|
|
||
|
set(LLVM_TARGET_DEFINITIONS Opts.td)
|
||
|
tablegen(LLVM Opts.inc -gen-opt-parser-defs)
|
||
|
add_public_tablegen_target(TLICheckerOptsTableGen)
|
||
|
|
||
|
add_llvm_tool(llvm-tli-checker
|
||
|
llvm-tli-checker.cpp
|
||
|
|
||
|
DEPENDS
|
||
|
TLICheckerOptsTableGen
|
||
|
)
|