Skip to content

Commit

Permalink
add more KMP examples
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-enko committed Sep 24, 2024
1 parent 5c7f371 commit cb97c12
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,22 @@ version = "1.0-SNAPSHOT"

kotlin {
jvm()
linuxX64()
macosX64()

js(IR) {
browser()
}

macosX64()
macosArm64()

iosX64()
iosArm64()

linuxX64()
linuxArm64()

mingwX64()

sourceSets {
commonMain {
dependencies {
Expand Down

0 comments on commit cb97c12

Please sign in to comment.