package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

48 lines
2.2 KiB

package("cef")
set_homepage("https://bitbucket.org/chromiumembedded")
set_description("Chromium Embedded Framework (CEF). A simple framework for embedding Chromium-based browsers in other applications.")
set_license("BSD-3-Clause")
if is_plat("windows") then
if is_arch("x64") then
add_versions("88.2.9", "86c01e38e7b7d59fed8a1e1ab2c3bfbcc1db42e21f8a6e6feb4061b2af7b1b7d")
add_versions("88.2.1", "8ed01da6327258536c61ada46e14157149ce727e7729ec35a30b91b3ad3cf555")
else
add_versions("88.2.9", "90c15421d6d7b970ca839b746d8e85c09f449ae37d87d07f42dd45dfe16df455")
add_versions("88.2.1", "f608e4028478d4c87541c679f5cfe42bda0d459a80ee26acfe93f634c25e96ab")
end
end
set_urls("https://cef-builds.spotifycdn.com/cef_binary_$(version).tar.bz2", {version = function (version)
if version:eq("88.2.1") then
return "88.2.1+g0b18d0b+chromium-88.0.4324.146_windows" .. (is_arch("x64") and "64" or "32")
elseif version:eq("88.2.9") then
return "88.2.9+g5c8711a+chromium-88.0.4324.182_windows" .. (is_arch("x64") and "64" or "32")
end
return ""
end})
add_includedirs(".", "include")
if is_plat("windows") then
add_syslinks("user32", "advapi32")
end
on_install("windows", function (package)
assert(package:config("vs_runtime") == "MT" and not package:config("shared"), "only support static library with MT")
package:addenv("PATH", "bin")
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")
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cxxfuncs("CefEnableHighDPISupport", {includes = "cef_app.h"}))
end)