The ./configure has an option:
--with-wx-config=CONFIG wx-config script to use (optional)
How do you use it to specify the equivalent of:
`wx-config --cflags --debug=yes` and
`wx-config --libs --debug=yes`
so that the nightly runs in debug mode and uses the debug
version of wxwidgets.
Quote from: Pecan on June 22, 2008, 01:06:40 AM
The ./configure has an option:
--with-wx-config=CONFIG wx-config script to use (optional)
How do you use it to specify the equivalent of:
`wx-config --cflags --debug=yes` and
`wx-config --libs --debug=yes`
so that the nightly runs in debug mode and uses the debug
version of wxwidgets.
Configure as -
../configure --with-wx-config=<path_to_debug_wx-config>/wx-config
Thanks, that works perfectly.