Issue
I'm using cmake to generate an nmake build system using the "NMake Makefiles" generator. When I compile, even if I specify "nmake /K", the build stops after the first .cpp file which had an error. I understand that it should not compile targets who have a failed dependency, but several independent source files should be handleable in this way.
Solution
GNU make's -k option also bails out if it gets too many errors, which may confuse users, maybe that's why nmake
does not support it.
Try nmake /I
just like make -i
Answered By - rubenvb Answer Checked By - Robin (WPSolving Admin)