[K/N] Add objcClassesIncludingCategories cinterop property

It allows to list Objective-C classes that should include
corresponding categories from the same file.
The current implementation is super-simple and slow, but
it is OK since it is not intended to be a general-purpose
solution for now.
This commit is contained in:
Sergey Bogolepov
2023-01-12 12:40:39 +02:00
committed by Space Team
parent ab205edeab
commit 2f0bdfc5e2
4 changed files with 68 additions and 13 deletions
@@ -132,6 +132,9 @@ class DefFile(val file:File?, val config:DefFileConfig, val manifestAddendProper
properties.getProperty("plugin")
}
val objcClassesIncludingCategories by lazy {
properties.getSpaceSeparated("objcClassesIncludingCategories")
}
}
}