Re: [CMake] Custom cache

2008-02-06 Thread Bill Lorensen
vtk and itk make heavy use of ctest scripts ( http://www.cmake.org/Wiki/CMake_Scripting_Of_CTest) to generate/save cache settings. We use them for many of the nightly tests: http://www.itk.org/Testing/Dashboard/MostRecentResults-Nightly/Dashboard.html http://www.vtk.org/Testing/Dashboard/MostRecent

Re: [CMake] Custom cache

2008-02-06 Thread Filipe Sousa
Alexander Neundorf wrote: > On Thursday 07 February 2008, Fernando Cacciola wrote: > > Try QtDialog from cmake cvs, there you can delete single entries, filter > entries by a pattern and then delete the filtered entries etc. s/QtDialog/cmake-gui signature.asc Description: OpenPGP digital si

Re: [CMake] Custom cache

2008-02-06 Thread Mike Jackson
can't you load up a "pre-cache" with cmake on fresh runs? cmake -C. I am assuming you could use a backup copy of your CMakeCache.txt with the changed entries removed as a starting place. Just a guess. Someone can correct me if I am wrong. -- Mike Jackson Senior Research Engineer Innovati

Re: [CMake] Custom cache

2008-02-06 Thread Alexander Neundorf
On Thursday 07 February 2008, Fernando Cacciola wrote: > Hi people, > > As you know (or should know) it is sometimes needed to delete the cache, > specially if the system changes and libraries are added, deleted or > upgraded. > However, some settings are too valuable and its annoying to loose them

[CMake] Custom cache

2008-02-06 Thread Fernando Cacciola
Hi people, As you know (or should know) it is sometimes needed to delete the cache, specially if the system changes and libraries are added, deleted or upgraded. However, some settings are too valuable and its annoying to loose them just because the cache had to be deleted, so I wonder, are th