diff options
Diffstat (limited to '3rdparty/bgfx/scripts/bgfx.lua')
-rw-r--r-- | 3rdparty/bgfx/scripts/bgfx.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/3rdparty/bgfx/scripts/bgfx.lua b/3rdparty/bgfx/scripts/bgfx.lua index ce2effb0f88..97ec723ddba 100644 --- a/3rdparty/bgfx/scripts/bgfx.lua +++ b/3rdparty/bgfx/scripts/bgfx.lua @@ -36,7 +36,7 @@ function bgfxProject(_name, _kind, _defines) includedirs { path.join(BGFX_DIR, "3rdparty"), path.join(BGFX_DIR, "3rdparty/dxsdk/include"), - path.join(BGFX_DIR, "../bx/include"), + path.join(BX_DIR, "include"), } defines { @@ -88,12 +88,18 @@ function bgfxProject(_name, _kind, _defines) "-weak_framework Metal", } - configuration { "not nacl" } + configuration { "not nacl", "not linux-steamlink" } includedirs { --nacl has GLES2 headers modified... + --steamlink has EGL headers modified... path.join(BGFX_DIR, "3rdparty/khronos"), } + configuration { "linux-steamlink" } + defines { + "EGL_API_FB", + } + configuration {} includedirs { |