Tim McCormack
04/06/2023, 9:33 PMIgor Demin
04/06/2023, 10:04 PMTim McCormack
04/06/2023, 10:43 PMsrc/jvmMain/kotlin
as a source directory.kotlin {
jvm {
jvmToolchain(11)
withJava()
}
sourceSets {
val jvmMain by getting {
dependencies {
implementation(compose.desktop.currentOs)
}
}
val jvmTest by getting
}
}
Full actual code here: https://sandstorm.appux.com/shared/Ht7Wf-apel4_RH9SIg89fCJOjatSQb-AHLRSBUIP-xl/timmc/comp1337/src/0d9388b76122a9f6c4ee0de878b14de5b641f7b0/build.gradle.kts -- the project works, but I have to manually mark those src and test dirs every time I start IntelliJ.Dima Avdeev
04/17/2023, 6:11 PMTim McCormack
04/17/2023, 9:57 PM