Re: [CMake] how to ignore errors/keep going using cmake

2011-01-06 Thread David Cole
This depends on the projects use of message in the CMakeLists.txt files. If a project call to message uses FATAL_ERROR it stops immediately and returns an error. If they use SEND_ERROR it continues processing and returns an error when it is done configuring. In either case, it will not generate

[CMake] how to ignore errors/keep going using cmake

2011-01-05 Thread Ekaterina Sanina
Hi, I was wondering if it's possible to ignore errors and continue the build with cmake (for example if one wants to find out how many failures the project has). Is there option similar to -i ( --ignore-errors) or -k (--keep-going) option of GNU make? I scanned the documentation and can't find

Re: [CMake] how to ignore errors/keep going using cmake

2011-01-05 Thread Alan W. Irwin
On 2011-01-05 16:43-0800 Ekaterina Sanina wrote: Hi, I was wondering if it's possible to ignore errors and continue the build with cmake (for example if one wants to find out how many failures the project has). Is there option similar to -i ( --ignore-errors) or -k (--keep-going) option of