diff options
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", |