49 lines
726 B
CMake
49 lines
726 B
CMake
|
set(LLVM_TARGET_DEFINITIONS Options.td)
|
||
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
||
|
add_public_tablegen_target(COFFOptionsTableGen)
|
||
|
|
||
|
if(NOT LLD_BUILT_STANDALONE)
|
||
|
set(tablegen_deps intrinsics_gen)
|
||
|
endif()
|
||
|
|
||
|
add_lld_library(lldCOFF
|
||
|
Chunks.cpp
|
||
|
DLL.cpp
|
||
|
Driver.cpp
|
||
|
DriverUtils.cpp
|
||
|
ICF.cpp
|
||
|
InputFiles.cpp
|
||
|
LTO.cpp
|
||
|
MapFile.cpp
|
||
|
MarkLive.cpp
|
||
|
MinGW.cpp
|
||
|
PDB.cpp
|
||
|
Strings.cpp
|
||
|
SymbolTable.cpp
|
||
|
Symbols.cpp
|
||
|
Writer.cpp
|
||
|
|
||
|
LINK_COMPONENTS
|
||
|
${LLVM_TARGETS_TO_BUILD}
|
||
|
BinaryFormat
|
||
|
Core
|
||
|
DebugInfoCodeView
|
||
|
DebugInfoMSF
|
||
|
DebugInfoPDB
|
||
|
LibDriver
|
||
|
LTO
|
||
|
MC
|
||
|
Object
|
||
|
Option
|
||
|
Support
|
||
|
WindowsManifest
|
||
|
|
||
|
LINK_LIBS
|
||
|
lldCommon
|
||
|
${LLVM_PTHREAD_LIB}
|
||
|
|
||
|
DEPENDS
|
||
|
COFFOptionsTableGen
|
||
|
${tablegen_deps}
|
||
|
)
|