I have an Android project that has an NDK component, configured to be built with CMake. And depending on where the project dir is located on a drive, I may get a "Command line too long." error when CMake is trying to build this project. It's because CMake assembles huge command lines listing all the .cpp files in a project.
I read that CMake has a mechanism called "response files" to work around this, but I can't find a way to enable them in an NDK project. A little advice, please?