[Gradle] Update watchosDeviceArm64 target preset
^KT-54583 Verification Pending
This commit is contained in:
committed by
Space Team
parent
fe2ee9886d
commit
f5d9819c3f
+5
-5
@@ -244,18 +244,18 @@ interface KotlinTargetContainerWithPresetFunctions : KotlinTargetsContainerWithP
|
|||||||
|
|
||||||
fun watchosDeviceArm64(
|
fun watchosDeviceArm64(
|
||||||
name: String = "watchosDeviceArm64",
|
name: String = "watchosDeviceArm64",
|
||||||
configure: KotlinNativeTargetWithSimulatorTests.() -> Unit = { }
|
configure: KotlinNativeTarget.() -> Unit = { }
|
||||||
): KotlinNativeTargetWithSimulatorTests =
|
): KotlinNativeTarget =
|
||||||
configureOrCreate(
|
configureOrCreate(
|
||||||
name,
|
name,
|
||||||
presets.getByName("watchosDeviceArm64") as KotlinNativeTargetWithSimulatorTestsPreset,
|
presets.getByName("watchosDeviceArm64") as KotlinNativeTargetPreset,
|
||||||
configure
|
configure
|
||||||
)
|
)
|
||||||
|
|
||||||
fun watchosDeviceArm64() = watchosDeviceArm64("watchosDeviceArm64") { }
|
fun watchosDeviceArm64() = watchosDeviceArm64("watchosDeviceArm64") { }
|
||||||
fun watchosDeviceArm64(name: String) = watchosDeviceArm64(name) { }
|
fun watchosDeviceArm64(name: String) = watchosDeviceArm64(name) { }
|
||||||
fun watchosDeviceArm64(name: String, configure: Action<KotlinNativeTargetWithSimulatorTests>) = watchosDeviceArm64(name) { configure.execute(this) }
|
fun watchosDeviceArm64(name: String, configure: Action<KotlinNativeTarget>) = watchosDeviceArm64(name) { configure.execute(this) }
|
||||||
fun watchosDeviceArm64(configure: Action<KotlinNativeTargetWithSimulatorTests>) = watchosDeviceArm64 { configure.execute(this) }
|
fun watchosDeviceArm64(configure: Action<KotlinNativeTarget>) = watchosDeviceArm64 { configure.execute(this) }
|
||||||
|
|
||||||
fun tvosArm64(
|
fun tvosArm64(
|
||||||
name: String = "tvosArm64",
|
name: String = "tvosArm64",
|
||||||
|
|||||||
Reference in New Issue
Block a user