xref: /llvm-project/llvm/unittests/TableGen/CMakeLists.txt (revision 81fc43a39878dbd938b45d7735fe6e0fe37b03c3)
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  AutomataTest.cpp
14  CodeExpanderTest.cpp
15  ParserEntryPointTest.cpp
16  )
17
18target_link_libraries(TableGenTests PRIVATE LLVMTableGenCommon LLVMTableGen)
19