diff options
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() |