Prev: wxHtmlDCRenderer with background image
Next: Problems with Debug DLL Libraries - Unreachable Code Assertertion - wxDummyConsoleApp
From: "Tomasz Sienkiewicz" on 1 Aug 2006 18:09 Hello, is there easy way to compile wxDEV-C++ project on linux? Maybe I've chosen wrong IDE for my project? Please help Thanks in advance Tom -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ --------------------------------------------------------------------- To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
From: "Iulian-Nicu Serbanoiu" on 1 Aug 2006 18:35 After having installed wx-dev package on your distribution ( or install wx from source [./configure ............... ;make;make install] ) you have a script called wx-config in the path. The easiest way to compile is: g++ `wx-config --libs --cflags` *.cpp More detailed: wx-config --cflags tells what flags are used to compile wx-config --libs tells what flags are used to link In the example above the two flags are combined in one because in that case g++ also links besides compiling. I also use sometimes wxDevCpp with wine in linux and it works without problems ( Ubuntu desktop 6.06 - Wine 0.9.9 - everything from packages ). But I'd recommend Dialog Blocks [cross platform] . It is indeed a great piece of software. HTH, Iulian On 8/1/06, Tomasz Sienkiewicz <azgaard(a)poczta.onet.pl> wrote: > Hello, > > is there easy way to compile wxDEV-C++ project on linux? Maybe I've chosen > wrong IDE for my project? > Please help > > Thanks in advance > Tom > > -- > Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org > For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org
From: "Tomasz Sienkiewicz" on 1 Aug 2006 19:27
Thank You, Iulian frankly saying I was expecting something more sophisticated :) like n-lines long commandline for g++ ;) Thanks to you, I have successfully compiled my first, not yet ready, cross platform application :) regards Tom On Wed, 02 Aug 2006 00:35:48 +0200, Iulian-Nicu Serbanoiu <undergraver(a)gmail.com> wrote: > After having installed wx-dev package on your distribution ( or > install wx from source [./configure ............... ;make;make > install] ) you have a script called wx-config in the path. > > The easiest way to compile is: > > g++ `wx-config --libs --cflags` *.cpp > > More detailed: > > wx-config --cflags tells what flags are used to compile > wx-config --libs tells what flags are used to link > > In the example above the two flags are combined in one because in that > case g++ also links besides compiling. > > I also use sometimes wxDevCpp with wine in linux and it works without > problems ( Ubuntu desktop 6.06 - Wine 0.9.9 - everything from packages > ). But I'd recommend > Dialog Blocks [cross platform] . It is indeed a great piece of software. > > HTH, > > Iulian > > On 8/1/06, Tomasz Sienkiewicz <azgaard(a)poczta.onet.pl> wrote: >> Hello, >> >> is there easy way to compile wxDEV-C++ project on linux? Maybe I've >> chosen >> wrong IDE for my project? >> Please help >> >> Thanks in advance >> Tom >> >> -- >> Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org >> For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org > For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org > > -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ --------------------------------------------------------------------- To unsubscribe, e-mail: wx-users-unsubscribe(a)lists.wxwidgets.org For additional commands, e-mail: wx-users-help(a)lists.wxwidgets.org |