| 12345678910111213141516171819202122232425 |
- --
- -- Copyright 2010-2017 Branimir Karadzic. All rights reserved.
- -- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
- --
-
- project "bx"
- uuid "4db0b09e-d6df-11e1-a0ec-65ccdd6a022f"
- kind "StaticLib"
- configuration { "osx or ios" }
- -- OSX ar doesn't like creating archive without object files
- -- here is object file...
- prebuildcommands {
- "@echo \"void dummy() {}\" > /tmp/dummy.cpp",
- }
- files {
- "/tmp/dummy.cpp",
- }
- configuration {}
- files {
- "../include/**.h",
- "../include/**.inl",
- }
|