1# For a better template to copy, see examples/standalone
2set(LLVM_LINK_COMPONENTS
3  Support
4  )
5
6add_toy_chapter(toyc-ch1
7  toyc.cpp
8  parser/AST.cpp
9  )
10include_directories(include/)
11target_link_libraries(toyc-ch1
12  PRIVATE
13    MLIRSupport)
14