bgfx/scripts/texturec.lua
2021-10-25 18:59:32 -07:00

45 lines
691 B
Lua

--
-- Copyright 2010-2021 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
--
project "texturec"
uuid (os.uuid("texturec"))
kind "ConsoleApp"
includedirs {
path.join(BIMG_DIR, "include"),
path.join(BGFX_DIR, "include"),
path.join(BIMG_DIR, "3rdparty/iqa/include"),
}
files {
path.join(BIMG_DIR, "tools/texturec/texturec.cpp"),
}
links {
"bimg_decode",
"bimg_encode",
"bimg",
}
using_bx()
configuration { "mingw-*" }
targetextension ".exe"
links {
"psapi",
}
configuration { "osx*" }
links {
"Cocoa.framework",
}
configuration { "vs20*" }
links {
"psapi",
}
configuration {}