From 23534248178661bf3fdac5897d930aa1bd3cd9ce Mon Sep 17 00:00:00 2001 From: Timofey Solonin Date: Tue, 13 Jun 2023 17:48:36 +0200 Subject: [PATCH] [MPP] Remove obsolete targets from CommonizerIT.commonizeNativeDistributionWithIosLinuxWindows ^KT-58822 --- .../p1/build.gradle.kts | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/commonizeNativeDistributionWithIosLinuxWindows/p1/build.gradle.kts b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/commonizeNativeDistributionWithIosLinuxWindows/p1/build.gradle.kts index a306037a3cb..a3525be3260 100644 --- a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/commonizeNativeDistributionWithIosLinuxWindows/p1/build.gradle.kts +++ b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/commonizeNativeDistributionWithIosLinuxWindows/p1/build.gradle.kts @@ -4,36 +4,26 @@ plugins { kotlin { iosX64() - @Suppress("DEPRECATION_ERROR") - iosArm32() + iosArm64() linuxX64() linuxArm64() mingwX64("windowsX64") - @Suppress("DEPRECATION_ERROR") - mingwX86("windowsX86") val commonMain by sourceSets.getting val iosMain by sourceSets.creating val linuxMain by sourceSets.creating - val windowsMain by sourceSets.creating val iosX64Main by sourceSets.getting - val iosArm32Main by sourceSets.getting + val iosArm64Main by sourceSets.getting val linuxX64Main by sourceSets.getting val linuxArm64Main by sourceSets.getting - val windowsX64Main by sourceSets.getting - val windowsX86Main by sourceSets.getting iosMain.dependsOn(commonMain) linuxMain.dependsOn(commonMain) - windowsMain.dependsOn(commonMain) iosX64Main.dependsOn(iosMain) - iosArm32Main.dependsOn(iosMain) + iosArm64Main.dependsOn(iosMain) linuxX64Main.dependsOn(linuxMain) linuxArm64Main.dependsOn(linuxMain) - - windowsX64Main.dependsOn(windowsMain) - windowsX86Main.dependsOn(windowsMain) }