How to backup the generator / settings cache for cmake gui on windows?

We are developing a module for opencv to use internal ones, and we would like not to check the full opencv for TFS.

Is there a way to save all the settings from the cmake gui application, for example, when a new developer joins the team, he can just simply load opencv and enable the settings for generating solution files?

+3
source share
1 answer

There is a CMakeCache.txt file in the assembly directory. It saves the values ​​changed in the gui application. If you copy this to a new assembly and reload the cache, the settings must be restored and you can generate assembly files.

+5
source

All Articles