mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Merge pull request #1290 from wjlroe/fix-glfw-on-windows
Fix path to static GLFW lib on Windows
This commit is contained in:
Vendored
+1
-1
@@ -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 == "linux" { foreign import glfw "system:glfw" } // TODO: Add the billion-or-so static libs to link to in linux
|
||||||
when ODIN_OS == "windows" {
|
when ODIN_OS == "windows" {
|
||||||
foreign import glfw {
|
foreign import glfw {
|
||||||
"lib/glfw3.lib",
|
"../lib/glfw3_mt.lib",
|
||||||
"system:user32.lib",
|
"system:user32.lib",
|
||||||
"system:gdi32.lib",
|
"system:gdi32.lib",
|
||||||
"system:shell32.lib",
|
"system:shell32.lib",
|
||||||
|
|||||||
Reference in New Issue
Block a user