mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 20:58:15 +00:00
Fix wgpu on Windows - missing links to ole32.lib and oleaut32.lib
This commit is contained in:
Vendored
+2
@@ -27,6 +27,8 @@ when ODIN_OS == .Windows {
|
|||||||
"system:advapi32.lib",
|
"system:advapi32.lib",
|
||||||
"system:user32.lib",
|
"system:user32.lib",
|
||||||
"system:gdi32.lib",
|
"system:gdi32.lib",
|
||||||
|
"system:ole32.lib",
|
||||||
|
"system:oleaut32.lib",
|
||||||
}
|
}
|
||||||
} else when ODIN_OS == .Darwin {
|
} 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")
|
@(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