Filter out arm

pull/4162/head
Daniil 2 weeks ago committed by GitHub
parent 59da53685f
commit 9ac408b31e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      packages/c/cef/xmake.lua

@ -50,7 +50,8 @@ package("cef")
end end
add_includedirs(".", "include") add_includedirs(".", "include")
on_install("windows", function (package) -- TODO: add support for arm
on_install("windows|x86", "windows|x64", function (package)
local distrib_type = package:debug() and "Debug" or "Release" local distrib_type = package:debug() and "Debug" or "Release"
os.cp(path.join(distrib_type, "*.lib"), package:installdir("lib")) os.cp(path.join(distrib_type, "*.lib"), package:installdir("lib"))
os.cp(path.join(distrib_type, "*.dll"), package:installdir("bin")) os.cp(path.join(distrib_type, "*.dll"), package:installdir("bin"))

Loading…
Cancel
Save