blob: e6b9b840ac3e9651adfab5bcadaee80cd57dbfef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
project('simplejava', 'java')
one = jar('one', 'com/mesonbuild/Simple.java',
main_class : 'com.mesonbuild.Simple',
install : true,
install_dir : get_option('bindir'),
)
two = jar('two', 'com/mesonbuild/Simple.java',
main_class : 'com.mesonbuild.Simple',
install : true,
install_dir : get_option('bindir'),
link_with : one,
)
|