Where is KonanTarget located? Is KonanTarget a enu...
# kotlin-native
n
Where is KonanTarget located? Is KonanTarget a enum?
n
That would explain why it doesn't exist in the Kotlin Native code base. Now I see why a composite build has to be done when adding a new Kotlin Native target.
KonanTarget relies on Family and Architecture:
Copy code
sealed class KonanTarget(override val name: String, val family: Family, val architecture: Architecture)
Both Family and Architecture don't exist in the Kotlin, or Kotlin Native code bases. Where is Family and Architecture located?
Found both of them, but that required doing a Gradle import which was painfully slow 🐌 (took around 45 min to complete).