bgfx/scripts/texturec.lua

31 lines
595 B
Lua
Raw Normal View History

2013-05-17 22:39:08 -04:00
--
2015-01-02 17:43:11 -05:00
-- Copyright 2010-2015 Branimir Karadzic. All rights reserved.
2013-05-17 22:39:08 -04:00
-- License: http://www.opensource.org/licenses/BSD-2-Clause
--
2013-02-22 00:13:56 -05:00
project "texturec"
uuid "838801ee-7bc3-11e1-9f19-eae7d36e7d26"
kind "ConsoleApp"
includedirs {
path.join(BX_DIR, "include"),
path.join(BGFX_DIR, "include"),
path.join(BGFX_DIR, "src"),
2015-12-12 20:28:23 -05:00
path.join(BGFX_DIR, "3rdparty"),
2013-02-22 00:13:56 -05:00
}
files {
path.join(BGFX_DIR, "src/image.*"),
path.join(BGFX_DIR, "tools/texturec/**.cpp"),
path.join(BGFX_DIR, "tools/texturec/**.h"),
2013-02-22 00:13:56 -05:00
}
links {
-- "bgfx",
}
2013-08-04 23:18:33 -04:00
configuration { "osx" }
links {
"Cocoa.framework",
}