Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 14:25:43 +01:00
parent ef295a34d2
commit bbab4c6180
352 changed files with 14422 additions and 1 deletions

22
desktop/build.gradle.kts Normal file
View file

@ -0,0 +1,22 @@
plugins {
kotlin("jvm")
}
group = "com.linuxcommandlibrary"
version = "1.0"
dependencies {
implementation(project(":common"))
implementation(libs.kotlinx.html.jvm)
implementation(libs.json)
implementation(libs.sqldelight.sqlite.driver)
implementation(libs.kotlinx.coroutines.core)
}
kotlin {
compilerOptions {
sourceSets["main"].apply {
resources.srcDirs("../assets")
}
}
}