diff options
-rw-r--r-- | premake5.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua index 1f312d1..3f82255 100644 --- a/premake5.lua +++ b/premake5.lua @@ -52,6 +52,8 @@ project("Pong") end elseif(os.ishost("windows") == true) then print("This script is expecting a MSYS2 or Cygwin environment. You've been warned.") + links {RaylibStaticLibrary, "-lopengl32", "-lgdi32", "-lwinmm", "-lpthread", "-lm"} + includedirs {"raylib/src", "src/windows"} else links {RaylibStaticLibrary, "m", "pthread", "dl"} end |