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.
 
 
 

54 lines
2.0 KiB

package("nana")
set_homepage("http://nanapro.org")
set_description("A modern C++ GUI library.")
add_urls("https://github.com/cnjinhao/nana/archive/v$(version).tar.gz",
"https://github.com/cnjinhao/nana.git")
add_versions("1.6.2", "5f5cb791dff292e27bfa29d850b93f809a0d91d6044ea7e22ce7ae76a5d8b24e")
add_versions("1.7.2", "e2efb3b7619e4ef3b6de93f8afc70ff477ec6cabf4f9740f0d786904c790613f")
add_versions("1.7.4", "56f7b1ed006c750fccf8ef15ab1e83f96751f2dfdcb68d93e5f712a6c9b58bcb")
if is_plat("linux", "windows") then
add_deps("cmake >=3.12")
end
if is_plat("windows") then
add_syslinks("ole32", "shell32", "kernel32", "user32", "gdi32", "winspool", "comdlg32", "advapi32")
add_defines("_SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING")
elseif is_plat("linux") then
add_syslinks("pthread", "X11", "Xft", "fontconfig")
end
on_install("linux", "windows", function (package)
if is_plat("windows") then
local file_name = path.join(os.curdir(), "source", "system", "split_string.cpp")
io.gsub(file_name, " and ", " && ")
end
local configs = {"-DNANA_CMAKE_ENABLE_JPEG=OFF", "-DNANA_CMAKE_ENABLE_PNG=OFF"}
if is_plat("linux") then
table.insert(configs, "-DNANA_CMAKE_NANA_FILESYSTEM_FORCE=ON")
end
import("package.tools.cmake").install(package, configs)
if is_plat("windows") then
os.cp("include", package:installdir())
end
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <nana/gui.hpp>
#include <nana/gui/widgets/form.hpp>
#include <nana/gui/widgets/label.hpp>
using namespace nana;
void test() {
form fm;
label lb(fm, rectangle(fm.size()));
lb.caption("Hello, World");
fm.show();
exec();
}
]]}, {configs = {languages = "c++11"}}))
end)