You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
441 B
24 lines
441 B
7 months ago
|
set(LLVM_TARGET_DEFINITIONS DarwinLdOptions.td)
|
||
|
tablegen(LLVM DarwinLdOptions.inc -gen-opt-parser-defs)
|
||
|
add_public_tablegen_target(DriverOptionsTableGen)
|
||
|
|
||
|
add_lld_library(lldDriver
|
||
|
DarwinLdDriver.cpp
|
||
|
|
||
|
ADDITIONAL_HEADER_DIRS
|
||
|
${LLD_INCLUDE_DIR}/lld/Driver
|
||
|
|
||
|
LINK_COMPONENTS
|
||
|
Option
|
||
|
Support
|
||
|
|
||
|
LINK_LIBS
|
||
|
lldCommon
|
||
|
lldCore
|
||
|
lldMachO
|
||
|
lldReaderWriter
|
||
|
lldYAML
|
||
|
)
|
||
|
|
||
|
add_dependencies(lldDriver DriverOptionsTableGen)
|