summaryrefslogtreecommitdiff
path: root/examples/Kaleidoscope/CMakeLists.txt
blob: 53c724f1a2d25b880f8f816545eb2ae425367eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
add_custom_target(Kaleidoscope)

macro(add_kaleidoscope_chapter name)
  add_dependencies(Kaleidoscope ${name})
  add_llvm_example(${name} ${ARGN})
endmacro(add_kaleidoscope_chapter name)

add_subdirectory(Chapter2)
add_subdirectory(Chapter3)
add_subdirectory(Chapter4)
add_subdirectory(Chapter5)
add_subdirectory(Chapter6)
add_subdirectory(Chapter7)
add_subdirectory(Chapter8)