Re: [Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-11 Thread Benoît Roehr
Hello guys, Thanks for your help, but it didn't worked. It's nonsense for me, wxWidget 2.8 have been removed, and wx-config --version returns the right version: purebasic@purebasic-VirtualBox:~/build/kicad/kicad.bzr/build$ wx-config --version 3.0.2 I also made a link to the wxWidget

Re: [Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-11 Thread Benoît Roehr
Le 10/10/2014 21:33, inkblotter a écrit : been there, done that. You are close.. All that removing of this and that is/should be unnecessary and even undesirable you should be using -DwxWidgits_CONFIG_EXECUTABLE=/path/to/the/correct/wx-config Oh noes ! I totally forgot to try that !!!

Re: [Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-11 Thread Wayne Stambaugh
On 10/11/2014 11:25 AM, Benoît Roehr wrote: Le 10/10/2014 21:33, inkblotter a écrit : been there, done that. You are close.. All that removing of this and that is/should be unnecessary and even undesirable you should be using -DwxWidgits_CONFIG_EXECUTABLE=/path/to/the/correct/wx-config

[Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-10 Thread Benoît Roehr
Hello guys, My problem with wxWidget 3.0 and CMake continues, I've tried to make this work for at least 10 hours now, and can't find any solution anywhere. I'm too noob with linux for the moment. List of what I tried: Installing latest wxWidget package (3.0.2) Removing wx2.8

Re: [Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-10 Thread Benoît Roehr
Aw sorry everyone. I just noticed my previous mail was only sent to Brian. It was a reply made in the build-under-windows subject. I join it in this subject here: On 09/10/2014 11:28, Brian Sidebotham wrote: Lastly, if you do want to develop KiCad I would strongly urge moving to Linux for

Re: [Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-10 Thread LordBlick
In response to a message written on 10.10.2014 15:41, from Benoît Roehr: Hello guys, My problem with wxWidget 3.0 and CMake continues, I've tried to make this work for at least 10 hours now, and can't find any solution anywhere. I'm too noob with linux for the moment. Comment out all

Re: [Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-10 Thread Wayne Stambaugh
Add -DwxWidgits_CONFIG_EXECUTABLE=/path/to/the/correct/wx-config when running cmake. Otherwise, the cmake module that finds wxWidgets will find the first one it discovers which in you case is 2.8.12. The other option it to remove the the wxWidgets 2.8.12 development package. On 10/10/2014 11:34

Re: [Kicad-developers] CMake fails to find wxWidget in a fresh Ubuntu 14.04 install when trying to build KiCad

2014-10-10 Thread Adam Wolf
Hi Benoit, Just expanding upon Wayne's answer, the way you would remove wxWidgets 2.8.12 development package on Ubuntu would be sudo apt-get remove wxwidgets2.8-dev or sudo aptitude remove wxwidgets2.8-dev I do not recommend modifying the CMake files to remove features. There are command