mame/3rdparty/bx/scripts/bin2c.lua
Miodrag Milanović 812e6094f4
Update BGFX, BX and BIMG (#10789)
* Update to bgfx a93a714632b79b5ddbf5c86ac323fa9b76ed3433
Co-authored-by: Бранимир Караџић <branimirkaradzic@gmail.com>
2023-01-05 09:32:40 -05:00

36 lines
527 B
Lua

--
-- Copyright 2010-2022 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()