The Meson build system Wiki
Brought to you by:
jussip
The new home of Meson's documentation is here. The information below is preserved only for posterity. It should be considered out of date.
Meson has experimental support for compiling Java programs. The basic syntax consists of only one function and would be used like this:
project('javaprog', 'java') myjar = jar('mything', 'com/example/Prog.java', main_class : 'com.example.Prog') test('javatest', myjar)
However note that Meson places limitations on how you lay out your code.