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

45 lines
719 B
Lua
Raw Normal View History

2016-08-29 22:31:11 +02:00
--
2018-02-03 17:39:28 +01:00
-- Copyright 2010-2018 Branimir Karadzic. All rights reserved.
2016-08-29 22:31:11 +02:00
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
--
project "texturec"
2018-02-03 17:39:28 +01:00
uuid (os.uuid("texturec"))
2016-08-29 22:31:11 +02:00
kind "ConsoleApp"
includedirs {
path.join(BX_DIR, "include"),
path.join(BIMG_DIR, "include"),
2016-08-29 22:31:11 +02:00
path.join(BGFX_DIR, "include"),
path.join(BIMG_DIR, "3rdparty/iqa/include"),
2016-08-29 22:31:11 +02:00
}
files {
2018-02-03 17:39:28 +01:00
path.join(BIMG_DIR, "tools/texturec/texturec.cpp"),
2016-08-29 22:31:11 +02:00
}
2017-04-11 08:16:10 +02:00
links {
"bimg_decode",
"bimg_encode",
"bimg",
2017-04-11 08:16:10 +02:00
"bx",
}
2016-08-29 22:31:11 +02:00
configuration { "mingw-*" }
targetextension ".exe"
2018-02-03 17:39:28 +01:00
links {
"psapi",
}
2016-08-29 22:31:11 +02:00
configuration { "osx" }
links {
"Cocoa.framework",
}
2018-02-03 17:39:28 +01:00
configuration { "vs20*" }
2017-04-11 08:16:10 +02:00
links {
"psapi",
}
2016-08-29 22:31:11 +02:00
configuration {}