xmake.lua 541 B

12345678910111213141516171819202122232425262728
  1. includes("c_common")
  2. includes("crypto")
  3. includes("fs")
  4. includes("mempool")
  5. includes("serialization")
  6. includes("tools")
  7. includes("ui")
  8. includes("mbedtls")
  9. includes("peripheral")
  10. includes("shell")
  11. includes("network")
  12. target("luatos_components")
  13. set_kind("static")
  14. add_deps("c_common")
  15. add_deps("crypto")
  16. add_deps("fs")
  17. add_deps("mempool")
  18. add_deps("serialization")
  19. add_deps("tools")
  20. add_deps("ui")
  21. add_deps("mbedtls")
  22. add_deps("peripheral")
  23. add_deps("shell")
  24. add_deps("network")
  25. target_end()