mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-09-09 10:15:33 +00:00
16 lines
327 B
Groovy
16 lines
327 B
Groovy
kotlin {
|
|
sourceSets {
|
|
jvmMain {
|
|
dependencies {
|
|
implementation compose.desktop.currentOs
|
|
}
|
|
}
|
|
jvmTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
implementation compose.uiTest
|
|
}
|
|
}
|
|
}
|
|
}
|