xref: /netbsd-src/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-lib/CMakeLists.txt (revision 82d56013d7b633d116a93943de88e08335357a7c)
1set(LLVM_LINK_COMPONENTS
2  BinaryFormat
3  BitReader
4  Object
5  Option
6  Support
7  )
8
9set(LLVM_TARGET_DEFINITIONS Options.td)
10tablegen(LLVM Options.inc -gen-opt-parser-defs)
11add_public_tablegen_target(LibOptionsTableGen)
12
13add_llvm_component_library(LLVMLibDriver
14  LibDriver.cpp
15
16  DEPENDS
17  intrinsics_gen
18
19  LINK_COMPONENTS
20  BinaryFormat
21  BitReader
22  Object
23  Option
24  Support
25  )
26add_dependencies(LLVMLibDriver LibOptionsTableGen)
27