mirror of
https://github.com/InsanusMokrassar/KotlinMultiplatformProjectTemplate.git
synced 2025-09-02 22:59:44 +00:00
11 lines
189 B
Groovy
11 lines
189 B
Groovy
kotlin {
|
|
linuxX64()
|
|
mingwX64()
|
|
|
|
sourceSets {
|
|
nativeMain.dependsOn commonMain
|
|
linuxX64Main.dependsOn nativeMain
|
|
mingwX64Main.dependsOn nativeMain
|
|
}
|
|
}
|