mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-05-18 22:44:11 +02:00
18 lines
226 B
Plaintext
18 lines
226 B
Plaintext
|
|
plugins {
|
|
alias(libs.plugins.kotlinMultiplatform)
|
|
|
|
}
|
|
|
|
kotlin {
|
|
jvm()
|
|
jvmToolchain(21)
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// put your Multiplatform dependencies here
|
|
}
|
|
}
|
|
}
|
|
|