[KT-43276] Add watchos_x64 target

This commit is contained in:
Sergey Bogolepov
2020-11-10 20:17:33 +07:00
committed by Stanislav Erokhin
parent 63b1aad3ef
commit 20931eebe1
9 changed files with 41 additions and 20 deletions
@@ -246,7 +246,7 @@ private fun simulator(project: Project): ExecutorService = object : ExecutorServ
private val device = project.findProperty("iosDevice")?.toString() ?: when (target) {
KonanTarget.TVOS_X64 -> "Apple TV 4K"
KonanTarget.IOS_X64 -> "iPhone 8"
KonanTarget.WATCHOS_X64,
KonanTarget.WATCHOS_X64 -> "Apple Watch Series 6 - 40mm"
KonanTarget.WATCHOS_X86 -> "Apple Watch Series 4 - 40mm"
else -> error("Unexpected simulation target: $target")
}