Gonna be a Linux-focused launcher at some point, just some scripts for now.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
533B

  1. import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
  2. plugins {
  3. kotlin("jvm") version "1.8.10"
  4. id("org.openjfx.javafxplugin") version "0.0.13"
  5. application
  6. }
  7. group = "io.github.norbipeti"
  8. version = "1.0-SNAPSHOT"
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. testImplementation(kotlin("test"))
  14. }
  15. tasks.test {
  16. useJUnitPlatform()
  17. }
  18. tasks.withType<KotlinCompile> {
  19. kotlinOptions.jvmTarget = "16"
  20. }
  21. application {
  22. mainClass.set("MainKt")
  23. }
  24. javafx {
  25. modules("javafx.controls", "javafx.fxml")
  26. }