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.
|
- import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
-
- plugins {
- kotlin("jvm") version "1.8.10"
- id("org.openjfx.javafxplugin") version "0.0.13"
- application
- }
-
- group = "io.github.norbipeti"
- version = "1.0-SNAPSHOT"
-
- repositories {
- mavenCentral()
- }
-
- dependencies {
- testImplementation(kotlin("test"))
- }
-
- tasks.test {
- useJUnitPlatform()
- }
-
- tasks.withType<KotlinCompile> {
- kotlinOptions.jvmTarget = "16"
- }
-
- application {
- mainClass.set("MainKt")
- }
-
- javafx {
- modules("javafx.controls", "javafx.fxml")
- }
|