mirror of
https://github.com/holub/mame
synced 2025-06-25 22:04:15 +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.
36 lines
527 B
Lua
36 lines
527 B
Lua
--
|
|
-- Copyright 2010-2023 Branimir Karadzic. All rights reserved.
|
|
-- License: https://github.com/bkaradzic/bx/blob/master/LICENSE
|
|
--
|
|
|
|
project "bin2c"
|
|
kind "ConsoleApp"
|
|
|
|
files {
|
|
"../tools/bin2c/**.cpp",
|
|
"../tools/bin2c/**.h",
|
|
}
|
|
|
|
using_bx()
|
|
|
|
configuration { "mingw-*" }
|
|
targetextension ".exe"
|
|
|
|
configuration { "linux-*" }
|
|
links {
|
|
"pthread",
|
|
}
|
|
configuration { "osx-*" }
|
|
linkoptions {
|
|
"-framework Foundation"
|
|
}
|
|
|
|
configuration { "vs20* or mingw*" }
|
|
links {
|
|
"psapi",
|
|
}
|
|
|
|
configuration {}
|
|
|
|
strip()
|