Skip to content

Commit

Permalink
Update some build script code
Browse files Browse the repository at this point in the history
  • Loading branch information
mahozad committed Oct 9, 2024
1 parent 6cca6ac commit 9e60813
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@ kotlin {
}
}

// Native targets:
// macosX64()
// macosArm64()

sourceSets {
commonMain.dependencies {
api(compose.foundation)
Expand All @@ -78,8 +74,6 @@ kotlin {
commonTest.dependencies {
implementation(libs.kotlin.test)
}
val androidMain by getting {}
val androidUnitTest by getting {}
val desktopMain by getting {}
val desktopTest by getting {
dependencies {
Expand All @@ -88,14 +82,13 @@ kotlin {
implementation(compose.desktop.windows_x64)
}
}
val jsMain by getting {}
val jsTest by getting {}
val iosX64Main by getting {}
val iosArm64Main by getting {}
val iosSimulatorArm64Main by getting {}
// See above
// val macosArm64Main by getting {}
// val macosX64Main by getting {}
androidMain {}
androidUnitTest {}
jsMain {}
jsTest {}
iosX64Main {}
iosArm64Main {}
iosSimulatorArm64Main {}
}
}

Expand Down

0 comments on commit 9e60813

Please sign in to comment.