Hello. First post to the mailing list. Just thought I'd share a bug I found and fixed.<div><br></div><div>The new version of wxWidgets (>= 2.9) contains a "ribbons" 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 "Modules" directory of cmake needs to have the following modifications for the ribbons library to work:</div><div><br></div><div>1. Line 306 "FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext)"</div>
<div>Should change to "FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext <b>ribbon</b>)"</div><div><br></div><div>2. Line 347 "FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext)"</div>
<div>Should change to "FOREACH(LIB core adv aui html media xrc dbgrid gl qa richtext <b>ribbon</b>)"</div><div><br></div><div>Then, you can simply type "find_package (wxWidgets REQUIRED base core ribbon)" 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'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>