2
0

bin2c.lua 497 B

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