bgfx/scripts/makedisttex.lua
Brett Vickers bdd112289b bgfx genie scripts: use path.join to compose paths
Using path.join instead of string concatenation makes the scripts more
OS-neutral. It also protects against missing or doubled "/" characters
in paths.
2015-02-27 15:44:24 -08:00

19 lines
459 B
Lua

--
-- Copyright 2010-2015 Branimir Karadzic. All rights reserved.
-- License: http://www.opensource.org/licenses/BSD-2-Clause
--
project "makedisttex"
uuid "b0561b30-91bb-11e1-b06e-023ad46e7d26"
kind "ConsoleApp"
includedirs {
path.join(BX_DIR, "include"),
path.join(BGFX_DIR, "3rdparty"),
}
files {
path.join(BGFX_DIR, "3rdparty/edtaa3/**.cpp"),
path.join(BGFX_DIR, "3rdparty/edtaa3/**.h"),
path.join(BGFX_DIR, "tools/makedisttex.cpp"),
}