06-24-2014, 05:01 PM
I just found a great bit of cmake goodness to help with MSVC2013:
When you add the following line to your CMakeCache.txt file, it will disable the ZERO_CHECK project that MSVC always tries to build when running MCS:
CMAKE_SUPPRESS_REGENERATION:BOOL=TRUE
On the other hand, it means that you have to run cmake manually after each change to any of the the CMakeLists.txt files. But I can live with that, much more than with MSVC's constant begging to rebuild the ZERO_CHECK project
When you add the following line to your CMakeCache.txt file, it will disable the ZERO_CHECK project that MSVC always tries to build when running MCS:
CMAKE_SUPPRESS_REGENERATION:BOOL=TRUE
On the other hand, it means that you have to run cmake manually after each change to any of the the CMakeLists.txt files. But I can live with that, much more than with MSVC's constant begging to rebuild the ZERO_CHECK project