On Thursday 17 February 2011, Carminati Federico wrote: > Thanks John, > Indeed there is one and this is certainly part of the problem. We also > found out that using "configure_file" to copy files can generate large > rebuild of the entire makefile structure. We will have to look into this.
configure_file() updates the written file only if the content actually changed. So if the content of the configured file did not change, no recompile will happen due to it. If you have something like a timestamp in it, it would change everytime. Alex _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
