mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
37 lines
921 B
Lua
37 lines
921 B
Lua
--
|
|
-- Copyright 2010-2015 Branimir Karadzic. All rights reserved.
|
|
-- License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
--
|
|
|
|
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"),
|
|
path.join(BGFX_DIR, "3rdparty"),
|
|
path.join(BGFX_DIR, "3rdparty/nvtt"),
|
|
}
|
|
|
|
files {
|
|
path.join(BGFX_DIR, "src/image.*"),
|
|
path.join(BGFX_DIR, "3rdparty/libsquish/**.cpp"),
|
|
path.join(BGFX_DIR, "3rdparty/libsquish/**.h"),
|
|
path.join(BGFX_DIR, "3rdparty/etc1/**.cpp"),
|
|
path.join(BGFX_DIR, "3rdparty/etc1/**.h"),
|
|
path.join(BGFX_DIR, "3rdparty/nvtt/**.cpp"),
|
|
path.join(BGFX_DIR, "3rdparty/nvtt/**.h"),
|
|
path.join(BGFX_DIR, "tools/texturec/**.cpp"),
|
|
path.join(BGFX_DIR, "tools/texturec/**.h"),
|
|
}
|
|
|
|
links {
|
|
-- "bgfx",
|
|
}
|
|
|
|
configuration { "osx" }
|
|
links {
|
|
"Cocoa.framework",
|
|
}
|