1
0
Fork 0

change version number and binary name

master
Florian Schrofner 2022-02-25 19:47:05 +01:00
parent af082829e5
commit 3bfa874afb
2 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ It should be enough to do a simple:
```bash ```bash
./gradlew build ./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 ## License
This software is licensed under the MPL 2.0, see the [LICENSE](LICENSE) file. This software is licensed under the MPL 2.0, see the [LICENSE](LICENSE) file.

View File

@ -4,7 +4,7 @@ plugins {
} }
group = "fi.schro" group = "fi.schro"
version = "0.0.1" version = "1.0.0"
repositories { repositories {
mavenCentral() mavenCentral()
@ -23,7 +23,7 @@ kotlin {
nativeTarget.apply { nativeTarget.apply {
binaries { binaries {
executable { executable("hc") {
entryPoint = "fi.schro.main" entryPoint = "fi.schro.main"
} }
} }