You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
498 B
18 lines
498 B
7 months ago
|
add_custom_target(Kaleidoscope)
|
||
|
set_target_properties(Kaleidoscope PROPERTIES FOLDER Examples)
|
||
|
|
||
|
macro(add_kaleidoscope_chapter name)
|
||
|
add_dependencies(Kaleidoscope ${name})
|
||
|
add_llvm_example(${name} ${ARGN})
|
||
|
endmacro(add_kaleidoscope_chapter name)
|
||
|
|
||
|
add_subdirectory(BuildingAJIT)
|
||
|
add_subdirectory(Chapter2)
|
||
|
add_subdirectory(Chapter3)
|
||
|
add_subdirectory(Chapter4)
|
||
|
add_subdirectory(Chapter5)
|
||
|
add_subdirectory(Chapter6)
|
||
|
add_subdirectory(Chapter7)
|
||
|
add_subdirectory(Chapter8)
|
||
|
add_subdirectory(Chapter9)
|