Merge pull request #1290 from wjlroe/fix-glfw-on-windows

Fix path to static GLFW lib on Windows
This commit is contained in:
Jeroen van Rijn
2021-11-10 18:41:30 +01:00
committed by GitHub

View File

@@ -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",