Closed jcornaz closed 5 years ago
I had no time to test this but as a starting point:
import edu.sc.seis.launch4j.tasks.DefaultLaunch4jTask
plugins {
// your used plugins
id("edu.sc.seis.launch4j") version "2.4.6"
}
tasks.withType<DefaultLaunch4jTask> {
outfile = "MyApp.exe"
mainClassName = "com.example.myapp.Start"
icon = "${projectDir}/icons/myApp.ico"
productName = "My App"
}
Thanks. Can you add it to the documentation?
Hello,
Could you, please document usage from Kotlin DSL?