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.
41 lines
925 B
41 lines
925 B
import org.jetbrains.compose.compose |
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat |
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
|
|
|
plugins { |
|
kotlin("multiplatform") |
|
id("org.jetbrains.compose") |
|
} |
|
|
|
group = "com.example" |
|
version = "1.0-SNAPSHOT" |
|
|
|
|
|
kotlin { |
|
jvm { |
|
compilations.all { |
|
kotlinOptions.jvmTarget = "17" |
|
} |
|
withJava() |
|
} |
|
sourceSets { |
|
val jvmMain by getting { |
|
dependencies { |
|
implementation(project(":common")) |
|
implementation(compose.desktop.currentOs) |
|
} |
|
} |
|
val jvmTest by getting |
|
} |
|
} |
|
|
|
compose.desktop { |
|
application { |
|
mainClass = "MainKt" |
|
nativeDistributions { |
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) |
|
packageName = "jetsnak-mpp" |
|
packageVersion = "1.0.0" |
|
} |
|
} |
|
}
|
|
|