What’s a good IDE setup for a mixed Kotlin/JVM and C++ JNI project? I’m in IntelliJ right now, with C++ code in one gradle module building with cmake, but of course that C++ code is full of red underlines because IntelliJ doesn’t know about the include paths. Clion I think has cmake integration, but then I lose Gradle and Kotlin, right?
In VSCode, I’d just generate a compile_commands.json file for C++ LSP integration, but of course Kotlin isn’t well supported there (I’ve tried the experimental plugin, and it works okay, but this project will eventually be KMP).
Is there one IDE (or IDE + plugins) that’ll do it all in one?