Skip to content

Commit

Permalink
Added linuxX64 target
Browse files Browse the repository at this point in the history
  • Loading branch information
lemcoder committed Nov 15, 2024
1 parent c58c3b0 commit 3f21efa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

Simple program for evaluating mathematical logic expressions and checking for tautology.
Currently available for:
* mingwx64 (Windows)
* mingwX64 (Windows)
* linuxX64

To run download the program from releases page and run with:
```
Expand Down
13 changes: 9 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,15 @@ repositories {
}

kotlin {
mingwX64().apply {
binaries {
executable {
entryPoint = "pl.lemanski.logik.main"
listOf(
mingwX64(),
linuxX64()
).forEach {
it.apply {
binaries {
executable {
entryPoint = "pl.lemanski.logik.main"
}
}
}
}
Expand Down

0 comments on commit 3f21efa

Please sign in to comment.