about summary refs log tree commit diff stats
path: root/premake5.lua
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-06-05 23:49:09 -0400
committerCharadon <dev@iotib.net>2022-06-05 23:49:09 -0400
commit18bc9439234675a6877da198be285ffff9f5bb4e (patch)
tree8a2863872373207e0a5f0db2c5b8ca5f89690ba9 /premake5.lua
parent6f59759be958b56509a16afd136f39da88b6e170 (diff)
downloadPong-C-18bc9439234675a6877da198be285ffff9f5bb4e.tar.gz
Forgot the GL dependency
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua
index a24e056..aa28bf5 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -34,7 +34,7 @@ project("Pong")
         links {RaylibStaticLibrary, "m", "pthread", "dl"}
     elseif(os.ishost("bsd") == true) then
         print("It is required you build raylib to an external glfw library when on bsd.")
-        linkoptions {"`pkgconf --libs glfw3`"}
+        linkoptions {"`pkgconf --libs glfw3`", "`pkgconf --libs gl`"}
         -- Which BSD?
         BSD_OS = io.popen("uname")
         BSD_OS_NAME = BSD_OS:read("*a")