2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 16:27:11 -07:00

Updated for latest RIFE2 core.

Some build changes.
Run Github workflow on macOS.
This commit is contained in:
Geert Bevin 2023-10-01 09:29:15 -04:00
parent a6aadf8e60
commit 2a5437de0c
5 changed files with 34 additions and 7 deletions

View file

@ -56,7 +56,8 @@ public class BldBuild extends AbstractRife2Build {
.mainSourceDirectories(antlr4Operation.outputDirectory(), core_src_main_java_directory)
.testSourceDirectories(core_src_test_java_directory)
.compileOptions()
.debuggingInfo(JavacOptions.DebuggingInfo.ALL);
.debuggingInfo(JavacOptions.DebuggingInfo.ALL)
.addAll(List.of("-encoding", "UTF-8"));
jarOperation()
.sourceDirectories(core_src_main_resources_directory)

View file

@ -78,7 +78,7 @@ public class JavacOptions extends ArrayList<String> {
*/
public JavacOptions encoding(String name) {
add("-encoding");
add("name");
add(name);
return this;
}

View file

@ -100,7 +100,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions doclet(String className) {
add("-doclet");
add("className");
add(className);
return this;
}
@ -112,7 +112,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions docletPath(String path) {
add("-docletpath");
add("path");
add(path);
return this;
}
@ -135,7 +135,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions encoding(String name) {
add("-encoding");
add("name");
add(name);
return this;
}
@ -213,7 +213,7 @@ public class JavadocOptions extends ArrayList<String> {
*/
public JavadocOptions locale(String name) {
add("-locale");
add("name");
add(name);
return this;
}