diff options
author | 2016-02-16 07:52:59 +0100 | |
---|---|---|
committer | 2016-02-16 07:52:59 +0100 | |
commit | 30ef0dc4278294830fb67add0ced228c79b55f1c (patch) | |
tree | 163f195ec1874b488bf22873d5d7e88be0f6db80 /3rdparty/bgfx/scripts/genie.lua | |
parent | d13f3f0d102b7e3d0bc1a6975a554722547fba0f (diff) |
Update to latest BGFX including my SteamLink support (nw)
Diffstat (limited to '3rdparty/bgfx/scripts/genie.lua')
-rw-r--r-- | 3rdparty/bgfx/scripts/genie.lua | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/3rdparty/bgfx/scripts/genie.lua b/3rdparty/bgfx/scripts/genie.lua index 77fe35d4cb6..52554366dfb 100644 --- a/3rdparty/bgfx/scripts/genie.lua +++ b/3rdparty/bgfx/scripts/genie.lua @@ -304,13 +304,21 @@ function exampleProject(_name) kind "ConsoleApp" targetextension ".bc" - configuration { "linux-* or freebsd" } + configuration { "linux-* or freebsd", "not linux-steamlink" } links { "X11", "GL", "pthread", } + configuration { "linux-steamlink" } + links { + "EGL", + "GLESv2", + "SDL2", + "pthread", + } + configuration { "rpi" } links { "X11", |