[LLD][COFF] Fix TypeServerSource matcher with more than one collision
[llvm-project.git] / lld / wasm / CMakeLists.txt
blob427ba586661309b01a74fbb280ec390616739f98
1 set(LLVM_TARGET_DEFINITIONS Options.td)
2 tablegen(LLVM Options.inc -gen-opt-parser-defs)
3 add_public_tablegen_target(WasmOptionsTableGen)
5 add_lld_library(lldWasm
6   Driver.cpp
7   InputChunks.cpp
8   InputFiles.cpp
9   LTO.cpp
10   MapFile.cpp
11   MarkLive.cpp
12   OutputSections.cpp
13   OutputSegment.cpp
14   Relocations.cpp
15   SymbolTable.cpp
16   Symbols.cpp
17   SyntheticSections.cpp
18   Writer.cpp
19   WriterUtils.cpp
21   LINK_COMPONENTS
22   ${LLVM_TARGETS_TO_BUILD}
23   BinaryFormat
24   Core
25   Demangle
26   LTO
27   MC
28   Object
29   Option
30   Passes
31   Support
33   LINK_LIBS
34   lldCommon
36   DEPENDS
37   WasmOptionsTableGen
38   intrinsics_gen
39   )