Browse Source

Fix path to static GLFW lib on Windows

William Roe 3 years ago
parent
commit
a805d9a721
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/glfw/bindings/bindings.odin

+ 1 - 1
vendor/glfw/bindings/bindings.odin

@@ -6,7 +6,7 @@ import vk "vendor:vulkan"
 when ODIN_OS == "linux"   { foreign import glfw "system:glfw" } // TODO: Add the billion-or-so static libs to link to in linux
 when ODIN_OS == "windows" { 
 	foreign import glfw { 
-		"lib/glfw3.lib", 
+		"../lib/glfw3_mt.lib",
 		"system:user32.lib", 
 		"system:gdi32.lib", 
 		"system:shell32.lib",