summaryrefslogtreecommitdiffhomepage
path: root/games/raylib_demo
diff options
context:
space:
mode:
authorDaniel Lemos <[email protected]>2016-11-21 04:13:40 -0200
committerDaniel Lemos <[email protected]>2016-11-24 03:26:47 +0000
commitfda91436b5749912548292842f7797d0dbb7bc55 (patch)
treee0cd5d7ad356585d2c47ff4068e3689725e92a36 /games/raylib_demo
parent0925f4ec4db5cf280ab988d8559f07996c1b0e16 (diff)
downloadraylib-fda91436b5749912548292842f7797d0dbb7bc55.tar.gz
raylib-fda91436b5749912548292842f7797d0dbb7bc55.zip
[games] Fix building the games on Linux by adding missing libs
Diffstat (limited to 'games/raylib_demo')
-rw-r--r--games/raylib_demo/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/raylib_demo/makefile b/games/raylib_demo/makefile
index a4435bb0..0c22261c 100644
--- a/games/raylib_demo/makefile
+++ b/games/raylib_demo/makefile
@@ -117,7 +117,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# libraries for Debian GNU/Linux desktop compiling
# requires the following packages:
# libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev
- LIBS = -lraylib -lglfw3 -lGLEW -lGL -lopenal -lm -pthread
+ LIBS = -lraylib -lglfw3 -lGLEW -lGL -lopenal -lm -pthread -ldl
# on XWindow could require also below libraries, just uncomment
#LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
else