-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle.kts
44 lines (38 loc) · 957 Bytes
/
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
plugins {
kotlin("jvm") version "1.9.20"
id("org.jetbrains.compose") version "1.5.10"
}
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
dependencies {
implementation(compose.desktop.currentOs)
implementation(compose.animationGraphics)
implementation(compose.animation)
implementation(compose.ui)
implementation(compose.runtime)
implementation(compose.runtimeSaveable)
implementation(compose.foundation)
implementation(compose.uiTooling)
// implementation(compose)
implementation(kotlin("reflect"))
}
//compose.desktop {
// application {
// mainClass = "MainKt"
// }
//}
//tasks.withType<KotlinCompile> {
// kotlinOptions {
// freeCompilerArgs = listOf(
// "-Xcontext-receivers",
//// "-Xuse-k2",
// "-Xbackend-threads=4",
// )
// jvmTarget = "11"
//
// }
//}
//