aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaytan Laats <laytanlaats@hotmail.com>2025-02-27 18:27:31 +0100
committerLaytan Laats <laytanlaats@hotmail.com>2025-02-27 18:27:31 +0100
commit30f65372de99236b980d689510784552c407dcd7 (patch)
treed89c1ad6b7d5204cee9cd4156904074adaeaadfe
parent77c7087de369e9b82e8a93fea7bccf19e2e1f923 (diff)
wgpu: add missing libs on Windows
-rw-r--r--vendor/wgpu/wgpu.odin2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/wgpu/wgpu.odin b/vendor/wgpu/wgpu.odin
index 54c4496a6..94612bf62 100644
--- a/vendor/wgpu/wgpu.odin
+++ b/vendor/wgpu/wgpu.odin
@@ -30,6 +30,8 @@ when ODIN_OS == .Windows {
"system:gdi32.lib",
"system:ole32.lib",
"system:oleaut32.lib",
+ "system:propsys.lib",
+ "system:runtimeobject.lib",
}
} else when ODIN_OS == .Darwin {
@(private) ARCH :: "x86_64" when ODIN_ARCH == .amd64 else "aarch64" when ODIN_ARCH == .arm64 else #panic("unsupported WGPU Native architecture")