diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-11-10 18:41:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-10 18:41:30 +0100 |
| commit | c4a2580dfd07f5fd1bd1406c51c3029438ec7d7b (patch) | |
| tree | 48c50ed5db7b93fd4c5a6582129dc683abf6d581 | |
| parent | 8a547b5922c11e5b0aa30d6ed3d03f71820c4ee0 (diff) | |
| parent | a805d9a7216464522c6ac6bcc91c7b1292e2a241 (diff) | |
Merge pull request #1290 from wjlroe/fix-glfw-on-windows
Fix path to static GLFW lib on Windows
| -rw-r--r-- | vendor/glfw/bindings/bindings.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/glfw/bindings/bindings.odin b/vendor/glfw/bindings/bindings.odin index 90d5a0f9e..06b5f5b32 100644 --- a/vendor/glfw/bindings/bindings.odin +++ b/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", |