diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2025-02-27 18:27:31 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2025-02-27 18:27:31 +0100 |
| commit | 30f65372de99236b980d689510784552c407dcd7 (patch) | |
| tree | d89c1ad6b7d5204cee9cd4156904074adaeaadfe /vendor/wgpu | |
| parent | 77c7087de369e9b82e8a93fea7bccf19e2e1f923 (diff) | |
wgpu: add missing libs on Windows
Diffstat (limited to 'vendor/wgpu')
| -rw-r--r-- | vendor/wgpu/wgpu.odin | 2 |
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") |