Skip to content

Commit

Permalink
Support android native targets and wasm-wasi (#288)
Browse files Browse the repository at this point in the history
* Enable android native targets

* Enable wasm-wasi
  • Loading branch information
whyoleg authored Sep 23, 2024
1 parent 363b34e commit a181b8a
Show file tree
Hide file tree
Showing 3 changed files with 224 additions and 170 deletions.
13 changes: 13 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@ kotlin {
pom { name = "${project.name}-wasm-js" }
}
}
@OptIn(ExperimentalWasmDsl::class)
wasmWasi {
nodejs()

mavenPublication {
groupId = group as String
pom { name = "${project.name}-wasm-wasi" }
}
}

mingwX64()
linuxX64()
Expand All @@ -125,6 +134,10 @@ kotlin {
tvosSimulatorArm64()
macosX64()
macosArm64()
androidNativeArm32()
androidNativeArm64()
androidNativeX86()
androidNativeX64()

@OptIn(ExperimentalKotlinGradlePluginApi::class)
applyDefaultHierarchyTemplate {
Expand Down
Loading

0 comments on commit a181b8a

Please sign in to comment.