<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Jul 9, 2015 at 2:32 PM, Bob Bachman <span dir="ltr"><<a href="mailto:bob_bachman@intercept.com" target="_blank">bob_bachman@intercept.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Richard Shaw <hobbes1069@...> writes:<br><span class="">> Ok, so that's not what's going on... Is this a custom build of wxWidgets?<br>
Is wx-config located in /usr/bin or somewhere else? <br><br>
</span>We build wxWidgets here. It's not located in /usr/bin. Here's our build<br>
process.<br>
<br>
from the wxWidgets-3.0.2 directory,<br>
1. mkdir buildgtk<br>
2. cd buildgtk<br>
3. ../configure --with-gtk --without-gnomeprint<br>
3. make<br>
<br>
The wx-config script is then found in the buildgtk directory.</blockquote><div><br></div><div>Ok, so how did you tell cmake to find wx-config when you were running 2.8.x? It only looks in whatever the default cmake search paths...</div><div><br></div><div>Looking at Modules/FindwxWidgets.cmake</div><div><pre style="color:rgb(0,0,0);word-wrap:break-word;white-space:pre-wrap">    #-----------------------------------------------------------------
    # UNIX: Start actual work.
    #-----------------------------------------------------------------
    # Support cross-compiling, only search in the target platform.
    find_program(wxWidgets_CONFIG_EXECUTABLE
      NAMES wx-config wx-config-3.0 wx-config-2.9 wx-config-2.8
      DOC "Location of wxWidgets library configuration provider binary (wx-config)."
      ONLY_CMAKE_FIND_ROOT_PATH
      )</pre><pre style="color:rgb(0,0,0);word-wrap:break-word;white-space:pre-wrap">---end---</pre>Thanks,<br><br>Richard</div></div></div></div>