zig/deps/lld/wasm/CMakeLists.txt

38 lines
590 B
CMake
Raw Normal View History

2018-01-18 06:29:21 +08:00
set(LLVM_TARGET_DEFINITIONS Options.td)
tablegen(LLVM Options.inc -gen-opt-parser-defs)
add_public_tablegen_target(WasmOptionsTableGen)
2018-08-05 05:47:16 +08:00
if(NOT LLD_BUILT_STANDALONE)
set(tablegen_deps intrinsics_gen)
endif()
2018-01-18 06:29:21 +08:00
add_lld_library(lldWasm
Driver.cpp
2018-08-05 05:47:16 +08:00
InputChunks.cpp
2018-01-18 06:29:21 +08:00
InputFiles.cpp
2018-08-05 05:47:16 +08:00
LTO.cpp
MarkLive.cpp
2018-01-18 06:29:21 +08:00
OutputSections.cpp
SymbolTable.cpp
Symbols.cpp
Writer.cpp
WriterUtils.cpp
LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
BinaryFormat
Core
Demangle
2018-08-05 05:47:16 +08:00
LTO
MC
2018-01-18 06:29:21 +08:00
Object
Option
Support
LINK_LIBS
lldCommon
2018-08-05 05:47:16 +08:00
DEPENDS
WasmOptionsTableGen
${tablegen_deps}
)