diff options
author | 2018-12-05 19:45:08 +0100 | |
---|---|---|
committer | 2018-12-05 19:45:08 +0100 | |
commit | 0bd02131b644b61088789f52f31b750c9aecaa6d (patch) | |
tree | 811c679a1bba8b24fc7967cdfe73640254d64156 /3rdparty/bx/scripts/lemon.lua | |
parent | 9a81ec7eaf00d73a23db5c003dc45b55d4b76c4a (diff) |
3rdparty: Updated bgfx, bimg, and bx to latest upstream. [Ryan Holtz]
Diffstat (limited to '3rdparty/bx/scripts/lemon.lua')
-rw-r--r-- | 3rdparty/bx/scripts/lemon.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3rdparty/bx/scripts/lemon.lua b/3rdparty/bx/scripts/lemon.lua new file mode 100644 index 00000000000..21024fd80b9 --- /dev/null +++ b/3rdparty/bx/scripts/lemon.lua @@ -0,0 +1,22 @@ +-- +-- Copyright 2010-2018 Branimir Karadzic. All rights reserved. +-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause +-- + +project "lemon" + kind "ConsoleApp" + + files { + path.join(BX_DIR, "tools/lemon/lemon.c") + } + + configuration { "not vs*" } + buildoptions { + "-Wno-implicit-fallthrough", + "-Wno-sign-compare", + "-Wno-unused-parameter", + } + + configuration {} + + strip() |