-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
75 lines (67 loc) · 2.34 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("multiplatform")
id("org.jetbrains.compose")
}
group = "it.meta.line"
version = libs.versions.appVersion.get()
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
kotlin {
jvm {
jvmToolchain(11)
withJava()
}
sourceSets {
val jvmMain by getting {
dependencies {
implementation(compose.desktop.currentOs)
implementation(compose.foundation)
implementation(compose.animation)
implementation(libs.decompose)
implementation(libs.decompose.extensions)
implementation(libs.koin)
implementation(projects.coreCommon)
implementation(projects.coreData)
implementation(projects.coreLocalization)
implementation(projects.corePersistence)
implementation(projects.coreRepository)
implementation(projects.featureMain)
implementation(projects.featureProject)
implementation(projects.featureProject.create)
implementation(projects.featureProject.edit)
implementation(projects.featureProject.metadata)
implementation(projects.featureProject.segmentation)
implementation(projects.featureProject.statistics)
implementation(projects.featureProject.settings)
implementation(projects.featureAlign)
}
}
val jvmTest by getting
}
}
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "MetaLine"
packageVersion = libs.versions.appVersion.get().substring(0, 5)
version = libs.versions.buildNumber.get()
includeAllModules = true
macOS {
iconFile.set(project.file("res/icon.icns"))
setDockNameSameAsPackageName = true
}
windows {
iconFile.set(project.file("res/icon.ico"))
}
linux {
iconFile.set(project.file("res/icon.png"))
}
}
}
}