Parallel Make Output
When running a CMake generated Makefile with multiple processes ( make -jN ), the output often gets messed up like this: [ 8%] [ 8%] [ 9%] Building CXX object App/CMakeFiles/App.dir/src/File1.cpp.o Building CXX object App/CMakeFiles/App.dir/src/File2.cpp.o Building CXX object App/CMakeFiles/App.dir/src/File3.cpp.o I'm not sure, but I think this behavior is also there for Makefiles not generated by CMake. I'd say it happens when multiple processes write to stdout at the same time. I know I'm probably being pedantic, but is there any (simple) fix to this? ;) Eric Melski If you're using GNU make,