fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
project('subdirjava', 'java')
|
||||
|
||||
subdir('sub')
|
||||
@@ -0,0 +1,8 @@
|
||||
package com.mesonbuild;
|
||||
|
||||
class Simple {
|
||||
public static void main(String [] args) {
|
||||
TextPrinter t = new TextPrinter("Printing from Java.");
|
||||
t.print();
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
package com.mesonbuild;
|
||||
|
||||
class TextPrinter {
|
||||
|
||||
private String msg;
|
||||
|
||||
TextPrinter(String s) {
|
||||
msg = s;
|
||||
}
|
||||
|
||||
public void print() {
|
||||
System.out.println(msg);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
javaprog = jar('myprog',
|
||||
'com/mesonbuild/Simple.java',
|
||||
'com/mesonbuild/TextPrinter.java',
|
||||
main_class : 'com.mesonbuild.Simple')
|
||||
test('subdirtest', javaprog)
|
||||
Reference in New Issue
Block a user