diff options
-rw-r--r-- | premake5.lua | 2 |
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") |