mame/3rdparty/bgfx/scripts/texturec.lua

45 lines
719 B
Lua
Raw Normal View History

--
-- Copyright 2010-2019 Branimir Karadzic. All rights reserved.
2016-01-04 19:00:51 +01:00
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
--
project "texturec"
uuid (os.uuid("texturec"))
kind "ConsoleApp"
includedirs {
path.join(BX_DIR, "include"),
path.join(BIMG_DIR, "include"),
2015-02-28 07:52:28 +01:00
path.join(BGFX_DIR, "include"),
path.join(BIMG_DIR, "3rdparty/iqa/include"),
}
files {
path.join(BIMG_DIR, "tools/texturec/texturec.cpp"),
}
2017-02-05 13:56:35 +01:00
links {
"bimg_decode",
"bimg_encode",
"bimg",
2017-02-05 13:56:35 +01:00
"bx",
}
2016-05-03 12:20:29 +02:00
configuration { "mingw-*" }
targetextension ".exe"
links {
"psapi",
}
configuration { "osx" }
links {
"Cocoa.framework",
}
2016-05-03 12:20:29 +02:00
configuration { "vs20*" }
2017-02-05 13:56:35 +01:00
links {
"psapi",
}
2016-05-03 12:20:29 +02:00
configuration {}