Browse Source

Add missing resources (#337)

yamashi 4 years ago
parent
commit
c99cb93a1f
1 changed files with 2 additions and 0 deletions
  1. 2 0
      packages/c/cef/xmake.lua

+ 2 - 0
packages/c/cef/xmake.lua

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