pull/13/head
ruki 6 years ago
parent 88dc9aa289
commit 08a3085b5b
No known key found for this signature in database
GPG Key ID: 33341DF9719963FA
  1. 25
      packages/n/nana/xmake.lua

@ -0,0 +1,25 @@
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")
on_install(function (package)
import("package.tools.cmake").install(package)
end)
on_test(function (package)
import("lib.detect.check_cxsnippets")
assert(check_cxsnippets({test = [[
using namespace nana;
form fm;
label lb(fm, rectangle(fm.size()));
lb.caption("Hello, World");
fm.show();
exec();
]]}, {configs = table.join(package:fetch(), {languages = "c++11"}), sourcekind = "cxx",
includes = {"nana/gui/wvl.hpp", "nana/gui/widgets/label.hpp"}}))
end)
Loading…
Cancel
Save