jnipp: add package (#2866)

* jnipp: add package

* disable plat

* fix shared
pull/2868/head
star9029 1 year ago committed by GitHub
parent 2791125e3b
commit bfebcb0dfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 46
      packages/j/jnipp/xmake.lua

@ -0,0 +1,46 @@
package("jnipp")
set_homepage("https://github.com/mitchdowd/jnipp")
set_description("C++ wrapper for the Java Native Interface")
set_license("MIT")
add_urls("https://github.com/mitchdowd/jnipp/archive/refs/tags/$(version).tar.gz",
"https://github.com/mitchdowd/jnipp.git")
add_versions("v1.0.0", "e5ff425e1af81d6c0a80420f5b3a46986cdb5f2a1c34449e2fb262eb2edf885b")
if is_plat("windows") then
add_syslinks("advapi32")
end
add_deps("openjdk")
on_install("windows|x64", "macosx|x86_64", "macosx|arm64", "mingw|x86_64", function (package)
io.writefile("xmake.lua", [[
add_rules("mode.debug", "mode.release")
add_requires("openjdk")
set_languages("c++11")
target("jnipp")
set_kind("$(kind)")
add_files("jnipp.cpp")
add_headerfiles("jnipp.h")
add_packages("openjdk")
if is_plat("windows") then
add_syslinks("advapi32")
if is_kind("shared") then
add_rules("utils.symbols.export_all", {export_classes = true})
end
end
]])
import("package.tools.xmake").install(package)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <jnipp.h>
void test() {
jni::Vm vm;
jni::Class Integer = jni::Class("java/lang/Integer");
jni::Object i = Integer.newInstance("1000");
}
]]}, {configs = {languages = "c++11"}}))
end)
Loading…
Cancel
Save