Enabled verbose compiling
This commit is contained in:
parent
fbaa0264e1
commit
d658bcf0c4
1 changed files with 4 additions and 7 deletions
|
@ -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();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue