Files
bimg/scripts/meta.lua
2026-06-12 23:47:01 -07:00

47 lines
661 B
Lua

--
-- Copyright 2010-2026 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bimg/blob/master/LICENSE
--
project "meta"
kind "ConsoleApp"
includedirs {
path.join(BIMG_DIR, "include"),
}
files {
path.join(BIMG_DIR, "tools/meta/**.cpp"),
path.join(BIMG_DIR, "tools/meta/**.h"),
}
links {
"bimg_decode",
"bimg",
}
if _OPTIONS["with-libheif"] then
links {
"heif",
}
configuration {}
end
using_bx()
configuration { "mingw-*" }
targetextension ".exe"
configuration { "osx*" }
links {
"Cocoa.framework",
}
configuration { "vs20* or mingw*" }
links {
"psapi",
}
configuration {}