Enabled verbose compiling

This commit is contained in:
Erik C. Thauvin 2024-11-28 10:46:10 -08:00
parent fbaa0264e1
commit d658bcf0c4
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -58,14 +58,11 @@ public class ExampleBuild extends Project {
@Override @Override
public void compile() throws Exception { public void compile() throws Exception {
// The source code located in src/main/kotlin and src/test/kotlin will be compiled // The source code located in src/main/kotlin and src/test/kotlin will be compiled
new CompileKotlinOperation() var op = new CompileKotlinOperation()
.fromProject(this)
// .kotlinHome("path/to/kotlin") // .kotlinHome("path/to/kotlin")
// .kotlinc("path/to/kotlinc") // .kotlinc("path/to/kotlinc")
.execute(); .fromProject(this);
op.compileOptions().verbose(true);
// var op = new CompileKotlinOperation().fromProject(this); op.execute();
// op.compileOptions().verbose(true);
// op.execute();
} }
} }