From b000298779d4ac8ecd587713218e6954c52d70dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petrus=20Nguy=E1=BB=85n=20Th=C3=A1i=20H=E1=BB=8Dc?= Date: Mon, 4 Dec 2023 00:17:52 +0700 Subject: [PATCH] More targets --- channel-event-bus/build.gradle.kts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/channel-event-bus/build.gradle.kts b/channel-event-bus/build.gradle.kts index 3367c18..c5d6903 100644 --- a/channel-event-bus/build.gradle.kts +++ b/channel-event-bus/build.gradle.kts @@ -38,12 +38,25 @@ kotlin { nodejs() } + // According to https://kotlinlang.org/docs/native-target-support.html + // Tier 1: macosX64, macosArm64, iosSimulatorArm64, iosX64 + // Tier 2: linuxX64, linuxArm64, + // watchosSimulatorArm64, watchosX64, watchosArm32, watchosArm64, + // tvosSimulatorArm64, tvosX64, tvosArm64, + // iosArm64 + // Tier 3: androidNativeArm32, androidNativeArm64, androidNativeX86, androidNativeX64, + // mingwX64, + // watchosDeviceArm64 + iosArm64() iosX64() iosSimulatorArm64() macosX64() macosArm64() + mingwX64() + linuxX64() + linuxArm64() tvosX64() tvosSimulatorArm64() @@ -53,6 +66,12 @@ kotlin { watchosArm64() watchosX64() watchosSimulatorArm64() + watchosDeviceArm64() + + androidNativeArm32() + androidNativeArm64() + androidNativeX86() + androidNativeX64() sourceSets { commonMain {