The Meson Build System
http://mesonbuild.com/
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.
17 lines
471 B
17 lines
471 B
3 years ago
|
name: jar
|
||
|
returns: jar
|
||
|
description: |
|
||
|
Build a jar from the specified Java source files. Keyword arguments
|
||
|
are the same as [[executable]]'s, with the addition of
|
||
|
`main_class` which specifies the main class to execute when running
|
||
|
the jar with `java -jar file.jar`.
|
||
|
|
||
|
posargs_inherit: _build_target_base
|
||
|
varargs_inherit: _build_target_base
|
||
|
kwargs_inherit: _build_target_base
|
||
|
|
||
|
kwargs:
|
||
|
main_class:
|
||
|
type: str
|
||
|
description: Main class for running the built jar
|