diff options
Diffstat (limited to '3rdparty/bgfx/scripts/texturec.lua')
-rw-r--r-- | 3rdparty/bgfx/scripts/texturec.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3rdparty/bgfx/scripts/texturec.lua b/3rdparty/bgfx/scripts/texturec.lua index c1c0e7da12f..e0b240755cc 100644 --- a/3rdparty/bgfx/scripts/texturec.lua +++ b/3rdparty/bgfx/scripts/texturec.lua @@ -1,6 +1,6 @@ -- --- Copyright 2010-2018 Branimir Karadzic. All rights reserved. --- License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause +-- Copyright 2010-2022 Branimir Karadzic. All rights reserved. +-- License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE -- project "texturec" @@ -8,7 +8,6 @@ project "texturec" kind "ConsoleApp" includedirs { - path.join(BX_DIR, "include"), path.join(BIMG_DIR, "include"), path.join(BGFX_DIR, "include"), path.join(BIMG_DIR, "3rdparty/iqa/include"), @@ -22,16 +21,17 @@ project "texturec" "bimg_decode", "bimg_encode", "bimg", - "bx", } + using_bx() + configuration { "mingw-*" } targetextension ".exe" links { "psapi", } - configuration { "osx" } + configuration { "osx*" } links { "Cocoa.framework", } |