Add missing resources (#337)

pull/338/head
yamashi 4 years ago committed by GitHub
parent baed778157
commit c99cb93a1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/c/cef/xmake.lua

@ -35,6 +35,8 @@ package("cef")
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, "*.dll"), package:installdir("bin"))
os.cp(path.join(distrib_type, "swiftshader", "*.dll"), package:installdir("bin/swiftshader"))
os.cp(path.join(distrib_type, "*.bin"), package:installdir("bin"))
os.cp("Resources/*", package:installdir("bin"))
local configs = {}
os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua")

Loading…
Cancel
Save