Skip to content

Commit

Permalink
Merge pull request #4205 from Valakor/wgpu
Browse files Browse the repository at this point in the history
Fix wgpu on Windows - missing links to ole32.lib and oleaut32.lib
  • Loading branch information
gingerBill authored Sep 6, 2024
2 parents 78506b9 + c19da21 commit 90358f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vendor/wgpu/wgpu.odin
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 90358f9

Please sign in to comment.