20 lines
302 B
CMake
20 lines
302 B
CMake
|
|
set(LLVM_TARGET_DEFINITIONS Options.td)
|
||
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
||
|
|
add_public_tablegen_target(MinGWOptionsTableGen)
|
||
|
|
|
||
|
|
add_lld_library(lldMinGW
|
||
|
|
Driver.cpp
|
||
|
|
|
||
|
|
LINK_COMPONENTS
|
||
|
|
Option
|
||
|
|
Support
|
||
|
|
|
||
|
|
LINK_LIBS
|
||
|
|
lldCOFF
|
||
|
|
lldCommon
|
||
|
|
|
||
|
|
DEPENDS
|
||
|
|
MinGWOptionsTableGen
|
||
|
|
intrinsics_gen
|
||
|
|
)
|