21 lines · plain
1set(LLVM_LINK_COMPONENTS2 TableGen3 Support4 )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(TableGenTests13 AutomataTest.cpp14 CodeExpanderTest.cpp15 ParserEntryPointTest.cpp16 17 DISABLE_LLVM_LINK_LLVM_DYLIB18 )19 20target_link_libraries(TableGenTests PRIVATE LLVMTableGenCommon LLVMTableGen)21