I'm using KDevelop and CMake to develop a project that includes many targets, including a few of executables and libraries and many unit-tests of them.
Every time when I start to build my project, I have to wait a long time, because KDevelop / CMake always build all the targets defined in CMakeList.txt. Most of the time, I only modified a bit of the codes, and merely want to build a single target to validate whether the modification is correct.
So, my question is:
Is there a way, I can let KDevelop and CMake only build a single or couple of the targets? Thanks!