Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Get keyboard input from X11 on Linux
  • Loading branch information
erorcun committed Feb 18, 2021
1 parent 48cec4a commit bf7280b55bffd568b00d5145f5799c7f73114ffc
Showing with 305 additions and 8 deletions.
  1. +2 −2 premake5.lua
  2. +303 −6 src/skel/glfw/glfw.cpp
@@ -342,10 +342,10 @@ project "re3"
libdirs { "vendor/openal-soft/libs/Win64" } libdirs { "vendor/openal-soft/libs/Win64" }


filter "platforms:linux*oal" filter "platforms:linux*oal"
links { "openal", "mpg123", "sndfile", "pthread" } links { "openal", "mpg123", "sndfile", "pthread", "X11" }


filter "platforms:bsd*oal" filter "platforms:bsd*oal"
links { "openal", "mpg123", "sndfile", "pthread" } links { "openal", "mpg123", "sndfile", "pthread", "X11" }


filter "platforms:macosx*oal" filter "platforms:macosx*oal"
links { "openal", "mpg123", "sndfile", "pthread" } links { "openal", "mpg123", "sndfile", "pthread" }

0 comments on commit bf7280b

Please sign in to comment.