1set(LLVM_LINK_COMPONENTS
2  TableGen
3  Support
4  )
5
6set(LLVM_TARGET_DEFINITIONS Automata.td)
7
8tablegen(LLVM AutomataTables.inc -gen-searchable-tables)
9tablegen(LLVM AutomataAutomata.inc -gen-automata)
10add_public_tablegen_target(AutomataTestTableGen)
11
12add_llvm_unittest(TableGenTests
13  CodeExpanderTest.cpp
14  AutomataTest.cpp
15  )
16include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../utils/TableGen)
17target_link_libraries(TableGenTests PRIVATE LLVMTableGenGlobalISel LLVMTableGen)
18