Skip to content

Commit

Permalink
rename supportedTarget -> nativeCoroutines
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushg committed Feb 17, 2022
1 parent 12a8509 commit c2ac88a
Show file tree
Hide file tree
Showing 12 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kmp-nativecoroutines-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ kotlin {
implementation(Dependencies.Kotlinx.atomicfu)
}
}
val supportedTargetMain by creating {
val nativeCoroutinesMain by creating {
dependsOn(commonMain)
}
val supportedTargetTest by creating {
val nativeCoroutinesTest by creating {
dependsOn(commonTest)
}
val appleMain by creating {
dependsOn(supportedTargetMain)
dependsOn(nativeCoroutinesMain)
}
val appleTest by creating {
dependsOn(supportedTargetTest)
dependsOn(nativeCoroutinesTest)
}
listOf(
macosX64, macosArm64,
Expand Down

0 comments on commit c2ac88a

Please sign in to comment.