mame/3rdparty/bimg/scripts/texturec.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

40 lines
605 B
Lua

--
-- Copyright 2010-2022 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bimg/blob/master/LICENSE
--
project "texturec"
kind "ConsoleApp"
includedirs {
path.join(BIMG_DIR, "include"),
}
files {
path.join(BIMG_DIR, "tools/texturec/**.cpp"),
path.join(BIMG_DIR, "tools/texturec/**.h"),
}
links {
"bimg_decode",
"bimg_encode",
"bimg",
}
using_bx()
configuration { "mingw-*" }
targetextension ".exe"
configuration { "osx*" }
links {
"Cocoa.framework",
}
configuration { "vs20* or mingw*" }
links {
"psapi",
}
configuration {}