do I need some special configuration for `kapt` in...
# intellij
t
do I need some special configuration for
kapt
in IDEA? I've applied to gradle module
kotlin-kapt
plugin and added
kapt ...
in dependencies, but no classes are generated after gradle sync.
b
Do they get generated during
./gradlew build
?
t
yes, though I see following message: w: [kapt] Sources output directory is not specified for **project_name**_main, skipping annotation processing
d
From https://kotlinlang.org/docs/reference/kapt.html:
Please note that kapt is still not supported for IntelliJ IDEA’s own build system.
t
ah (
switching to gradle build inside IDEA solves the problem