Using cmake 3.7.2 I recently switched a project from Unix Makefile to Cmake with Unix makefile generator.
All works as expected and the main problems we wanted to solve are solved (command line length in windows).
I discovered a great thing that is dependency checking as there is no more need to clean in normal situations and rebuild unneeded files.
Now the dependency is very slow (about 70s) when the all build is only 20s. Is there a way to speed up the checking ? Or to find the bottleneck of this check ?