llvm-project/mlir/examples/toy/CMakeLists.txt

10 lines
228 B
CMake
Raw Normal View History

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)