mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
e4d5aef619
This is a work in progress - the chapter text is incomplete, though the example code compiles and runs. Feedback and patches are, as usual, most welcome. llvm-svn: 270487
18 lines
493 B
CMake
18 lines
493 B
CMake
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(Orc)
|