mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-24 16:48:18 -05:00
33 lines
604 B
Lua
33 lines
604 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"
|
|
|
|
defines {
|
|
"ENTRY_CONFIG_PROFILER=0",
|
|
}
|
|
|
|
includedirs {
|
|
path.join(BX_DIR, "include"),
|
|
path.join(BGFX_DIR, "include"),
|
|
path.join(BGFX_DIR, "src"),
|
|
}
|
|
|
|
files {
|
|
path.join(BGFX_DIR, "src/image.*"),
|
|
path.join(BGFX_DIR, "tools/texturec/**.cpp"),
|
|
path.join(BGFX_DIR, "tools/texturec/**.h"),
|
|
}
|
|
|
|
links {
|
|
-- "bgfx",
|
|
}
|
|
|
|
configuration { "osx" }
|
|
links {
|
|
"Cocoa.framework",
|
|
}
|