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.

14 lines
412 B

add_rules("mode.release", "mode.debug")
target("cef")
set_kind("static")
add_files("libcef_dll/**.cc|ctocpp/test/**.cc")
del_files("cpptoc/test/**.cc")
add_includedirs(".")
add_headerfiles("include/(**.h)")
add_defines("WRAPPING_CEF_SHARED")
set_languages("c++14")
if is_plat("windows") then
-- fix std::max conflict with windows.h
add_defines("NOMINMAX")
end