diff --git a/README.md b/README.md index 3602b19..2802d47 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ It should be enough to do a simple: ```bash ./gradlew build ``` -You can then find the executable in `build/bin/native/releaseExecutable`. +You can then find the executable in `build/bin/native/hcReleaseExecutable`. ## License This software is licensed under the MPL 2.0, see the [LICENSE](LICENSE) file. diff --git a/build.gradle.kts b/build.gradle.kts index d9b64fa..0d1cfb7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "fi.schro" -version = "0.0.1" +version = "1.0.0" repositories { mavenCentral() @@ -23,7 +23,7 @@ kotlin { nativeTarget.apply { binaries { - executable { + executable("hc") { entryPoint = "fi.schro.main" } }