mirror of
https://github.com/holub/mame
synced 2025-06-11 23:25:26 +03:00

* Reverted "macOS, iOS: Removed OpenGL/OpenGLES support. (commit 4693983242a698eaafed87faf4ffef1789adc8f9). * Reverted "Fix macOS build" (commit ce2c2c13eda7d699051f75f598e740a447343a88). * Reverted "macOS: Fixed deprecated warnings." (commit 10a8cb61f882ebc9bb376ee2341d003880b7037f). * Added bgfx/README.mame explaining deviations from upstream.
23 lines
389 B
Lua
23 lines
389 B
Lua
--
|
|
-- Copyright 2010-2023 Branimir Karadzic. All rights reserved.
|
|
-- License: https://github.com/bkaradzic/bx/blob/master/LICENSE
|
|
--
|
|
|
|
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()
|