• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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