[Gradle] KotlinTargetHierarchyBuilder: Use any prefix for target functions

... to disambiguate with target preset functions

KT-55218
This commit is contained in:
Sebastian Sellmair
2022-12-01 14:06:15 +01:00
committed by Space Team
parent 9a69c1dd35
commit 8bea195d68
7 changed files with 68 additions and 66 deletions
@@ -30,33 +30,33 @@ interface KotlinTargetHierarchyBuilder {
fun anyJs()
/* Actual targets */
fun jvm()
fun android()
fun androidNativeX64()
fun androidNativeX86()
fun androidNativeArm32()
fun androidNativeArm64()
fun iosArm32()
fun iosArm64()
fun iosX64()
fun iosSimulatorArm64()
fun watchosArm32()
fun watchosArm64()
fun watchosX86()
fun watchosX64()
fun watchosSimulatorArm64()
fun watchosDeviceArm64()
fun tvosArm64()
fun tvosX64()
fun tvosSimulatorArm64()
fun linuxX64()
fun mingwX86()
fun mingwX64()
fun macosX64()
fun macosArm64()
fun linuxArm64()
fun linuxArm32Hfp()
fun linuxMips32()
fun linuxMipsel32()
fun wasm32()
fun anyJvm()
fun anyAndroid()
fun anyAndroidNativeX64()
fun anyAndroidNativeX86()
fun anyAndroidNativeArm32()
fun anyAndroidNativeArm64()
fun anyIosArm32()
fun anyIosArm64()
fun anyIosX64()
fun anyIosSimulatorArm64()
fun anyWatchosArm32()
fun anyWatchosArm64()
fun anyWatchosX86()
fun anyWatchosX64()
fun anyWatchosSimulatorArm64()
fun anyWatchosDeviceArm64()
fun anyTvosArm64()
fun anyTvosX64()
fun anyTvosSimulatorArm64()
fun anyLinuxX64()
fun anyMingwX86()
fun anyMingwX64()
fun anyMacosX64()
fun anyMacosArm64()
fun anyLinuxArm64()
fun anyLinuxArm32Hfp()
fun anyLinuxMips32()
fun anyLinuxMipsel32()
fun anyWasm32()
}