I have two modules: app and processor.
In an app’s buildfile I have: kapt project(":processor")
When trying to build either of those modules it warns:
w: [kapt] Sources output directory is not specified for processor_main, skipping annotation processing
How can I set that option up?
The same occurs even for jetbrains examples (GitHub - Kotlin/kotlin-examples: Various examples for Kotlin)
UPD:
Sorry for distraction. The processor works even with that warning.