Skip to content

Commit

Permalink
Add wasm platform
Browse files Browse the repository at this point in the history
  • Loading branch information
hufman committed Mar 24, 2024
1 parent 7706011 commit a1aacab
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

buildscript {
ext.kotlin_version = '1.9.0'
ext.kotlin_version = '1.9.22'
repositories {
google()
jcenter()
Expand Down
13 changes: 11 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@ kotlin {
jvm {

}

js {
}
wasmJs {
}

sourceSets {
commonMain {

}
commonTest {
dependencies {
Expand All @@ -23,8 +28,12 @@ kotlin {
dependencies {
implementation project(path: ':etch')
}

}

jsMain {}
jsTest {}
wasmJsMain {}
wasmJsTest {}
}
}
sourceCompatibility = "1.8"
Expand Down

0 comments on commit a1aacab

Please sign in to comment.