2019-04-03 01:02:07 +08:00
|
|
|
add_custom_target(Toy)
|
|
|
|
set_target_properties(Toy PROPERTIES FOLDER Examples)
|
|
|
|
|
|
|
|
macro(add_toy_chapter name)
|
|
|
|
add_dependencies(Toy ${name})
|
2020-10-05 06:17:34 +08:00
|
|
|
add_llvm_example(${name} ${ARGN})
|
2019-04-03 01:02:07 +08:00
|
|
|
endmacro(add_toy_chapter name)
|
|
|
|
|
|
|
|
add_subdirectory(Ch1)
|
2019-04-03 04:11:20 +08:00
|
|
|
add_subdirectory(Ch2)
|
2019-04-04 09:45:01 +08:00
|
|
|
add_subdirectory(Ch3)
|
2019-04-05 09:31:31 +08:00
|
|
|
add_subdirectory(Ch4)
|
2019-04-09 14:00:49 +08:00
|
|
|
add_subdirectory(Ch5)
|
2019-10-18 05:21:44 +08:00
|
|
|
add_subdirectory(Ch6)
|
2019-11-08 01:53:27 +08:00
|
|
|
add_subdirectory(Ch7)
|