Skip to content

Commit b3aefc1

Browse files
committed
build: fix example run task
1 parent c93a13e commit b3aefc1

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

examples/skia-gl/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ plugins {
22
alias(libs.plugins.kotlin)
33
alias(libs.plugins.kotlin.compose)
44
alias(libs.plugins.compose)
5-
application
65
}
76

87
val composeGlVersion = "0.9.1"
@@ -24,6 +23,8 @@ kotlin {
2423
jvmToolchain(21)
2524
}
2625

27-
application {
28-
mainClass.set("dev.silenium.compose.gl.examples.skia_gl.MainKt")
26+
compose.desktop {
27+
application {
28+
mainClass = "dev.silenium.compose.gl.examples.skia_gl.MainKt"
29+
}
2930
}

0 commit comments

Comments
 (0)