Hello.  First post to the mailing list.  Just thought I&#39;d share a bug I found and fixed.<div><br></div><div>The new version of wxWidgets (&gt;= 2.9) contains a &quot;ribbons&quot; library, which emulates the ribbon UI of MS Office and newer Windows 7 applications (<a href="http://en.wikipedia.org/wiki/Ribbon_(computing)">http://en.wikipedia.org/wiki/Ribbon_(computing)</a>).</div>
<div><br></div><div>However, the FindwxWidgets.cmake file in the &quot;Modules&quot; directory of cmake needs to have the following modifications for the ribbons library to work:</div><div><br></div><div>1. Line 306 &quot;FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext)&quot;</div>
<div>Should change to &quot;FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext <b>ribbon</b>)&quot;</div><div><br></div><div>2. Line 347 &quot;FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext)&quot;</div>
<div>Should change to &quot;FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext <b>ribbon</b>)&quot;</div><div><br></div><div>Then, you can simply type &quot;find_package (wxWidgets REQUIRED base core ribbon)&quot; in your CMakeLists.txt file, for example, to add the ribbon UI to your cmake-handled project!</div>
<div><br></div><div>Hope this helps someone, and hopefully this can be added to the next version of cmake!  I wasn&#39;t sure if I should have submitted a bug report or not, since it would be immediately opened and closed.</div>
<div><br></div><div>-assumeR</div><div><br></div>