Hi, On Sat, Oct 20, 2012 at 11:39 AM, Petr Kmoch <[email protected]> wrote: > when running the install step of a CMake-generated buildsystem (i.e. 'make > install' or building the VS project INSTALL), the run terminates after the > first failure (e.g. when it cannot find a file which is to be installed). Is > there a way to globally change this behaviour so that the error is reported > (perhaps as a warning), but the install step goes on?
For Makefile Generator you can run make -k install, that way make keeps on going even when errors occur. No idea about VS, NMake, Ninja or XCode generators probably depends on wether the respective tool has a switch for continuing if errors occur. Andreas -- 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
