mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 09:54:45 +00:00
Fix wgpu on Windows - missing links to ole32.lib and oleaut32.lib
This commit is contained in:
2
vendor/wgpu/wgpu.odin
vendored
2
vendor/wgpu/wgpu.odin
vendored
@@ -27,6 +27,8 @@ when ODIN_OS == .Windows {
|
||||
"system:advapi32.lib",
|
||||
"system:user32.lib",
|
||||
"system:gdi32.lib",
|
||||
"system:ole32.lib",
|
||||
"system:oleaut32.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")
|
||||
|
||||
Reference in New Issue
Block a user