Cleaned up compile options

This commit is contained in:
Erik C. Thauvin 2025-03-26 11:07:00 -07:00
parent 5565b5bc82
commit ca817dbafd
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -119,10 +119,9 @@ public class IsgdShortenBuild extends Project {
@BuildCommand(summary = "Compiles the Kotlin project")
@Override
public void compile() throws Exception {
var options = new CompileOptions().jvmOptions("--enable-native-access=ALL-UNNAMED");
new CompileKotlinOperation()
.fromProject(this)
.compileOptions(options)
.compileOptions(new CompileOptions().verbose(true))
.execute();
}