bin2c.lua 454 B

12345678910111213141516171819202122232425262728293031
  1. --
  2. -- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
  3. -- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
  4. --
  5. project "bin2c"
  6. kind "ConsoleApp"
  7. files {
  8. "../tools/bin2c/**.cpp",
  9. "../tools/bin2c/**.h",
  10. }
  11. using_bx()
  12. configuration { "mingw-*" }
  13. targetextension ".exe"
  14. configuration { "linux-*" }
  15. links {
  16. "pthread",
  17. }
  18. configuration { "vs20* or mingw*" }
  19. links {
  20. "psapi",
  21. }
  22. configuration {}
  23. strip()