2013-05-18 06:39:08 +04:00
|
|
|
--
|
2017-01-01 11:18:41 +03:00
|
|
|
-- Copyright 2010-2017 Branimir Karadzic. All rights reserved.
|
2016-01-01 11:11:04 +03:00
|
|
|
-- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2013-05-18 06:39:08 +04:00
|
|
|
--
|
|
|
|
|
2013-02-22 09:13:56 +04:00
|
|
|
project "texturec"
|
|
|
|
uuid "838801ee-7bc3-11e1-9f19-eae7d36e7d26"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
|
|
|
|
includedirs {
|
2017-04-04 08:42:27 +03:00
|
|
|
path.join(BX_DIR, "include"),
|
|
|
|
path.join(BIMG_DIR, "include"),
|
2015-02-28 02:44:24 +03:00
|
|
|
path.join(BGFX_DIR, "include"),
|
2017-04-04 08:42:27 +03:00
|
|
|
path.join(BIMG_DIR, "3rdparty/iqa/include"),
|
2013-02-22 09:13:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
files {
|
2017-04-04 08:42:27 +03:00
|
|
|
path.join(BGFX_DIR, "tools/texturec/texturec.cpp"),
|
2013-02-22 09:13:56 +04:00
|
|
|
}
|
|
|
|
|
2017-01-09 02:55:14 +03:00
|
|
|
links {
|
2017-04-04 08:42:27 +03:00
|
|
|
"bimg_decode",
|
|
|
|
"bimg_encode",
|
|
|
|
"bimg",
|
2017-01-09 02:55:14 +03:00
|
|
|
"bx",
|
|
|
|
}
|
|
|
|
|
2016-04-30 21:08:56 +03:00
|
|
|
configuration { "mingw-*" }
|
|
|
|
targetextension ".exe"
|
2013-08-05 07:18:33 +04:00
|
|
|
|
|
|
|
configuration { "osx" }
|
|
|
|
links {
|
|
|
|
"Cocoa.framework",
|
|
|
|
}
|
2016-04-30 21:08:56 +03:00
|
|
|
|
2017-01-09 05:20:00 +03:00
|
|
|
configuration { "vs20* or mingw*" }
|
|
|
|
links {
|
|
|
|
"psapi",
|
|
|
|
}
|
|
|
|
|
2016-04-30 21:08:56 +03:00
|
|
|
configuration {}
|