aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Java-module.md
AgeCommit message (Collapse)AuthorFilesLines
2022-03-01Deprecate java.generate_native_header() in favor of ↵Tristan Partin1-1/+46
java.generate_native_headers() After implementing a much more extensive Java native module than what currently exists in the tests, I found shortcomings. 1. You need to be able to pass multiple Java files. 2. Meson needs more information to better track the generated native headers. 3. Meson wasn't tracking the header files generated from inner classes. This new function should fix all the issues the old function had with room to grow should more functionality need to be added. What I implemented here in this new function is essentially what I have done in the Heterogeneous-Memory Storage Engine's Java bindings.
2021-08-22Add Java moduleTristan Partin1-0/+15
The Java module will serve as a source for easing Java development within Meson. Currently it only supports generating native header files.