xmake.lua 238 B

12345678910
  1. rule("markdown")
  2. set_extensions(".md")
  3. on_build_file(function (target, sourcefile, opt)
  4. print("processing %s", sourcefile)
  5. end)
  6. target("test")
  7. set_kind("phony")
  8. add_files("src/*.md")
  9. add_rules("markdown")