Skip to content

Commit

Permalink
Sort targets
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Mar 6, 2024
1 parent ff992d4 commit df4d30b
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ plugins {
kotlin {
explicitApi()

androidNativeArm32()
androidNativeArm64()
androidNativeX64()
androidNativeX86()

iosArm64()
iosSimulatorArm64()
iosX64()

js {
nodejs {
testTask {
Expand All @@ -23,35 +32,32 @@ kotlin {
}
}

wasmJs()

jvm {
compilations.configureEach { KotlinJvmCompilation compilation ->
compilation.compilerOptions.options.jvmTarget = JvmTarget.JVM_1_8
compilation.compilerOptions.options.freeCompilerArgs.add("-Xjvm-default=all")
}
}

androidNativeArm32()
androidNativeArm64()
androidNativeX86()
androidNativeX64()
iosArm64()
iosX64()
iosSimulatorArm64()
linuxX64()
linuxArm64()
macosX64()
linuxX64()

macosArm64()
macosX64()

mingwX64()

tvosArm64()
tvosX64()
tvosSimulatorArm64()
tvosX64()

wasmJs()

watchosArm32()
watchosArm64()
watchosX64()
watchosDeviceArm64()
watchosSimulatorArm64()
watchosX64()

sourceSets {
commonMain {
Expand Down

0 comments on commit df4d30b

Please sign in to comment.