One more alternative worth considering here that is cross-platform and doesn&#39;t require a wrapper script. (Not sure if it quiets things down enough for you or not, but the latest change to this feature will quiet things a little bit more starting with the upcoming CMake 2.8.4.)<br>
<br>See the RULE_MESSAGES global property:<br><a href="http://www.cmake.org/cmake/help/cmake-2-8-docs.html#prop_global:RULE_MESSAGES">http://www.cmake.org/cmake/help/cmake-2-8-docs.html#prop_global:RULE_MESSAGES</a><br><br>
And bugs related to it (all of which are closed at this point):<br><a href="http://public.kitware.com/Bug/view.php?id=5323">http://public.kitware.com/Bug/view.php?id=5323</a><br><a href="http://public.kitware.com/Bug/view.php?id=7062">http://public.kitware.com/Bug/view.php?id=7062</a><br>
<a href="http://public.kitware.com/Bug/view.php?id=8726">http://public.kitware.com/Bug/view.php?id=8726</a><br><a href="http://public.kitware.com/Bug/view.php?id=11304">http://public.kitware.com/Bug/view.php?id=11304</a><br>
<br><br>HTH,<br>David<br><br><br><div class="gmail_quote">On Mon, Dec 20, 2010 at 11:59 PM, Campbell Barton <span dir="ltr">&lt;<a href="mailto:ideasman42@gmail.com">ideasman42@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Slightly improved version which treats &quot;Linking&quot; lines separately from<br>
source lines.<br>
and its not messed up by threaded builds.<br>
<div class="im"><br>
---<br>
#!/bin/bash<br>
# filters CMake output to be more like nan-makefiles<br>
<br>
</div>FILTER=&quot;^\[ *[0-9]*%] \|^Built target &quot;<br>
make $@ | \<br>
                sed -u -e &#39;s/^Linking .*\//Linking /&#39; | \<br>
                sed -u -e &#39;s/^.*\//  /&#39; | \<br>
<div class="im">                grep --line-buffered -v &quot;$FILTER&quot;<br>
<br>
</div>echo &quot;Build Done&quot;<br>
---<br>
<br>
Output looks like this...<br>
<br>
Linking libbf_intern_audaspace.a<br>
  sp_ienv.c.o<br>
  binreloc.c.o<br>
  sp_preorder.c.o<br>
  spanel_bmod.c.o<br>
  glew.c.o<br>
  MT_ExpMap.cpp.o<br>
Linking libextern_binreloc.a<br>
  spanel_dfs.c.o<br>
  spivotL.c.o<br>
Linking libge_videotex.a<br>
<div><div></div><div class="h5"><br>
<br>
<br>
On Tue, Dec 21, 2010 at 3:04 AM, j s &lt;<a href="mailto:j.s4403@gmail.com">j.s4403@gmail.com</a>&gt; wrote:<br>
&gt; Cool,<br>
&gt;<br>
&gt; You might want to put a &#39;^&#39; after each \|, if that is how grep regex handles<br>
&gt; it.  I&#39;ve tended toward egrep which is more perl like when doing more<br>
&gt; complicated expressions.  Color is probably lost since it is no longer a<br>
&gt; tty.<br>
&gt;<br>
&gt; Juan<br>
&gt;<br>
&gt; On Mon, Dec 20, 2010 at 3:56 PM, Campbell Barton &lt;<a href="mailto:ideasman42@gmail.com">ideasman42@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; @Michael Wild. good point about threaded builds, so I take back the<br>
&gt;&gt; bit about &quot;Entering directory, then filenames only&quot;, nevertheless.<br>
&gt;&gt; some way to reduce flooding the console when rebuilding a single file<br>
&gt;&gt; would be much appreciated.<br>
&gt;&gt;<br>
&gt;&gt; @Juan, from your suggestion, I now use this.<br>
&gt;&gt;<br>
&gt;&gt; ---<br>
&gt;&gt; #!/bin/bash<br>
&gt;&gt; # filters CMake output to be more like nan-makefiles<br>
&gt;&gt;<br>
&gt;&gt; FILTER=&quot;^Scanning \|Linking \(C\|CXX\) static library \|Built target &quot;<br>
&gt;&gt; make $@ | grep --line-buffered -v &quot;$FILTER&quot; | sed  -e &#39;s/^.*\//  /&#39;<br>
&gt;&gt; echo &quot;Build Done&quot;<br>
&gt;&gt; ---<br>
&gt;&gt;<br>
&gt;&gt; Jesper Eskilson, agree supporting make -s would be good to have.<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Dec 20, 2010 at 10:05 AM, Jesper Eskilson<br>
&gt;&gt; &lt;<a href="mailto:jesper.eskilson@iar.com">jesper.eskilson@iar.com</a>&gt; wrote:<br>
&gt;&gt; &gt; On 12/20/2010 01:01 AM, Campbell Barton wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Hi, I&#39;m STILL trying to have CMake makefiles replace Blender&#39;s hand<br>
&gt;&gt; &gt;&gt; crafted makefiles.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Now the main sticking point with 2 other developers is they don&#39;t like<br>
&gt;&gt; &gt;&gt; CMakes output, as its overly verbose.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I realize CMake doesn&#39;t need to bend to the whim of all users but<br>
&gt;&gt; &gt;&gt; wondering if we could have something like  RULE_BRIEF_OUTPUT<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Rather then printing progress and full path for all files it could<br>
&gt;&gt; &gt;&gt; skip percentage and use a relative path for each C file.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I can try submitting a patch but would first like to know if this<br>
&gt;&gt; &gt;&gt; would be acceptable.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I&#39;ve submitted a bugreport about this:<br>
&gt;&gt; &gt; <a href="http://www.cmake.org/Bug/view.php?id=7062" target="_blank">http://www.cmake.org/Bug/view.php?id=7062</a>. It was submitted almost two<br>
&gt;&gt; &gt; years<br>
&gt;&gt; &gt; ago, so I&#39;m not sure it is getting very much attention by the CMake<br>
&gt;&gt; &gt; people.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Jesper Eskilson<br>
&gt;&gt; &gt; Developer<br>
&gt;&gt; &gt; IAR Systems<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt;&gt; &gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; - Campbell<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;<br>
&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt;&gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
&gt;&gt;<br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
</div></div>--<br>
<div><div></div><div class="h5">- Campbell<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</div></div></blockquote></div><br>