diff options
author | 2015-02-28 07:52:28 +0100 | |
---|---|---|
committer | 2015-02-28 07:52:28 +0100 | |
commit | abb3442fe62fe2ee81b35b7f98ca371fae468bff (patch) | |
tree | a9ca70ec681fda082e47c294203d25581bbc1643 /3rdparty/bgfx/scripts/texturec.lua | |
parent | 2e294961b4e1a26640633a371264dd3438cc7ddb (diff) |
update libs to latest (nw)
Diffstat (limited to '3rdparty/bgfx/scripts/texturec.lua')
-rw-r--r-- | 3rdparty/bgfx/scripts/texturec.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/3rdparty/bgfx/scripts/texturec.lua b/3rdparty/bgfx/scripts/texturec.lua index 76cb9ec07ae..729e545dd91 100644 --- a/3rdparty/bgfx/scripts/texturec.lua +++ b/3rdparty/bgfx/scripts/texturec.lua @@ -8,15 +8,15 @@ project "texturec" kind "ConsoleApp" includedirs { - BX_DIR .. "include", - BGFX_DIR .. "include", - BGFX_DIR .. "src", + path.join(BX_DIR, "include"), + path.join(BGFX_DIR, "include"), + path.join(BGFX_DIR, "src"), } files { - BGFX_DIR .. "src/image.*", - BGFX_DIR .. "tools/texturec/**.cpp", - BGFX_DIR .. "tools/texturec/**.h", + path.join(BGFX_DIR, "src/image.*"), + path.join(BGFX_DIR, "tools/texturec/**.cpp"), + path.join(BGFX_DIR, "tools/texturec/**.h"), } links { |