mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-05-18 06:24:12 +02:00
17 lines
213 B
Plaintext
17 lines
213 B
Plaintext
|
|
plugins {
|
|
alias(libs.plugins.kotlinMultiplatform)
|
|
|
|
}
|
|
|
|
kotlin {
|
|
jvm()
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// put your Multiplatform dependencies here
|
|
}
|
|
}
|
|
}
|
|
|