bx.lua 498 B

123456789101112131415161718192021222324
  1. --
  2. -- Copyright 2010-2016 Branimir Karadzic. All rights reserved.
  3. -- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
  4. --
  5. project "bx"
  6. uuid "4db0b09e-d6df-11e1-a0ec-65ccdd6a022f"
  7. kind "StaticLib"
  8. configuration { "osx or ios" }
  9. -- OSX ar doesn't like creating archive without object files
  10. -- here is object file...
  11. prebuildcommands {
  12. "@echo \"void dummy() {}\" > /tmp/dummy.cpp",
  13. }
  14. files {
  15. "/tmp/dummy.cpp",
  16. }
  17. configuration {}
  18. files {
  19. "../include/**.h",
  20. }