Looks like that your wx-config is still the old one
The output of codelite's repo wxWidgets should be like this:
- Code: Select all
eran@eran-linux:~$ wx-config --libs
-L/usr/lib/x86_64-linux-gnu -pthread -lwx_gtk2u_unofficial_xrc-2.9 -lwx_gtk2u_unofficial_webview-2.9 -lwx_gtk2u_unofficial_html-2.9 -lwx_gtk2u_unofficial_qa-2.9 -lwx_gtk2u_unofficial_adv-2.9 -lwx_gtk2u_unofficial_core-2.9 -lwx_baseu_unofficial_xml-2.9 -lwx_baseu_unofficial_net-2.9 -lwx_baseu_unofficial-2.9
Note that our wx build contains the 'unofficial' string
You should use
update-alternatives command to make sure that your wx-config is pointing to the correct wx-config (for me its /usr/lib/wx/config/gtk2-unicode-2.9-unofficial )
evstevemd wrote:I just did
CODE: SELECT ALL
cmake .
And then just
CODE: SELECT ALL
make
When using cmake, its advised not to pollute the source tree, but rather build in a subdirectory
A typical build should be (assuming you are in the codelite source tree root folder):
- Code: Select all
mkdir build-release
cd build-release
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make -j4
You can read more about this here:
http://codelite.org/Developers/Linux#toc3Eran