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.
16 lines
360 B
16 lines
360 B
add_custom_target(Toy)
|
|
set_target_properties(Toy PROPERTIES FOLDER Examples)
|
|
|
|
macro(add_toy_chapter name)
|
|
add_dependencies(Toy ${name})
|
|
add_llvm_example(${name} ${ARGN})
|
|
endmacro(add_toy_chapter name)
|
|
|
|
add_subdirectory(Ch1)
|
|
add_subdirectory(Ch2)
|
|
add_subdirectory(Ch3)
|
|
add_subdirectory(Ch4)
|
|
add_subdirectory(Ch5)
|
|
add_subdirectory(Ch6)
|
|
add_subdirectory(Ch7)
|