• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1add_custom_target(Kaleidoscope)
2set_target_properties(Kaleidoscope PROPERTIES FOLDER Examples)
3
4macro(add_kaleidoscope_chapter name)
5  add_dependencies(Kaleidoscope ${name})
6  add_llvm_example(${name} ${ARGN})
7endmacro(add_kaleidoscope_chapter name)
8
9add_subdirectory(BuildingAJIT)
10add_subdirectory(Chapter2)
11add_subdirectory(Chapter3)
12add_subdirectory(Chapter4)
13add_subdirectory(Chapter5)
14add_subdirectory(Chapter6)
15add_subdirectory(Chapter7)
16add_subdirectory(Chapter8)
17