Skip to content

Commit

Permalink
correct architecture specifier for mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
Doekin committed Sep 30, 2024
1 parent 904525d commit 0e5bede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/n/npcap_sdk/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package("npcap_sdk")
os.cp("Include/*", package:installdir("include"))
if package:is_arch("arm64") then
os.cp("Lib/ARM64/*", package:installdir("lib"))
elseif package:is_arch("x86") then
elseif package:is_arch("x86") or package:is_arch("i386") then
os.cp("Lib/*.lib", package:installdir("lib"))
else
os.cp("Lib/x64/*.lib", package:installdir("lib"))
Expand Down

0 comments on commit 0e5bede

Please sign in to comment.