Skip to content

Commit 12b510b

Browse files
fzhinkintbogdanova
authored andcommitted
Revert "Apple QoS support via donation (#499)"
This reverts commit 9548d69.
1 parent 9682530 commit 12b510b

File tree

4 files changed

+9
-313
lines changed

4 files changed

+9
-313
lines changed

atomicfu/build.gradle.kts

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,11 @@ kotlin {
129129

130130
@OptIn(ExperimentalKotlinGradlePluginApi::class)
131131
applyDefaultHierarchyTemplate {
132-
group("nativeUnixLike") {
133-
withLinux()
132+
group("native") {
133+
group("nativeUnixLike") {
134+
withLinux()
135+
withApple()
136+
}
134137
}
135138
group("androidNative32Bit") {
136139
withAndroidNativeX86()
@@ -142,32 +145,23 @@ kotlin {
142145
withAndroidNativeArm64()
143146
withAndroidNativeX64()
144147
}
148+
145149
}
146150

147151
sourceSets {
148-
val nativeNonAppleMain by creating {
149-
kotlin.srcDir("src/nativeNonAppleMain/kotlin")
150-
dependsOn(nativeMain.get())
151-
}
152-
153152
val nativeUnixLikeMain by getting {
154153
kotlin.srcDir("src/nativeUnixLikeMain/kotlin")
155-
dependsOn(nativeNonAppleMain)
154+
dependsOn(nativeMain.get())
156155
}
157156

158157
val androidNative32BitMain by getting {
159158
kotlin.srcDir("src/androidNative32BitMain/kotlin")
160-
dependsOn(nativeNonAppleMain)
159+
dependsOn(nativeMain.get())
161160
}
162161

163162
val androidNative64BitMain by getting {
164163
kotlin.srcDir("src/androidNative64BitMain/kotlin")
165-
dependsOn(nativeNonAppleMain)
166-
}
167-
168-
val mingwMain by getting {
169-
kotlin.srcDir("src/mingwMain/kotlin")
170-
dependsOn(nativeNonAppleMain)
164+
dependsOn(nativeMain.get())
171165
}
172166

173167
val androidNative32BitTest by getting {

atomicfu/src/appleMain/kotlin/kotlinx/atomicfu/locks/Synchronized.kt

Lines changed: 0 additions & 298 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)