helloworld.lua 590 B

12345678910111213141516171819202122232425262728
  1. project "helloworld"
  2. uuid "ff2c8450-ebf4-11e0-9572-0800200c9a66"
  3. kind "WindowedApp"
  4. includedirs {
  5. BGFX_DIR .. "../bx/include",
  6. BGFX_DIR .. "include",
  7. }
  8. files {
  9. BGFX_DIR .. "examples/common/**.cpp",
  10. BGFX_DIR .. "examples/common/**.h",
  11. BGFX_DIR .. "examples/helloworld/**.cpp",
  12. BGFX_DIR .. "examples/helloworld/**.h",
  13. }
  14. links {
  15. "bgfx",
  16. }
  17. configuration { "nacl" }
  18. targetextension ".nexe"
  19. configuration { "nacl", "Release" }
  20. postbuildcommands {
  21. "@echo Stripping symbols.",
  22. "@$(NACL)/bin/x86_64-nacl-strip -s \"$(TARGET)\""
  23. }