Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
-
acsMike
- I live to help wx-kind

- Posts: 153
- Joined: Fri Feb 11, 2005 9:05 am
- Location: Stockholm, Sweden
Post
by acsMike » Sun Jan 21, 2007 9:13 pm
Hi everybody,
I am considering porting a few apps from Windows & Mac to Linux. Which would the best graphical development environment be to hook up GCC to? Emacs?How do people actually develop under Linux?
I am used with XCode and Visual C++... Is there something as "visual" under Linux?
Thanks for reading this stupid question

/Michael Ljunggren, developer
Peavey Electronics
Windows: 2.6.3, 2.8.9 (VS2005) ** Mac: 2.6.3 (XCode 3) ** WinCE: 2.8.9 (VS2005), ** GTK: 2.8.9 (Kdevelop)
-
Auria
- Site Admin

- Posts: 6695
- Joined: Thu Sep 28, 2006 12:23 am
-
Contact:
Post
by Auria » Sun Jan 21, 2007 9:24 pm
Well this is not quite related to wxWidgets
Well XCode and Visual C++ are IDEs... so you need to look for an IDE - there are many to choose from. Code::Blocks, Anjuta, KDevelop, many others
You can also just use a plain text editor + build system (makefile, scons, etc.)
Depending on your needs

-
acsMike
- I live to help wx-kind

- Posts: 153
- Joined: Fri Feb 11, 2005 9:05 am
- Location: Stockholm, Sweden
Post
by acsMike » Mon Jan 22, 2007 6:34 am
Auria wrote:Well this is not quite related to wxWidgets
Well XCode and Visual C++ are IDEs... so you need to look for an IDE - there are many to choose from. Code::Blocks, Anjuta, KDevelop, many others
You can also just use a plain text editor + build system (makefile, scons, etc.)
Depending on your needs

Thanks Auria. I'll have a look at those. They all look very good.
/Michael Ljunggren, developer
Peavey Electronics
Windows: 2.6.3, 2.8.9 (VS2005) ** Mac: 2.6.3 (XCode 3) ** WinCE: 2.8.9 (VS2005), ** GTK: 2.8.9 (Kdevelop)
-
Jorg
- Moderator

- Posts: 3971
- Joined: Fri Aug 27, 2004 9:38 pm
- Location: Delft, Netherlands
-
Contact:
Post
by Jorg » Mon Jan 22, 2007 8:22 am
My all time favorite is using CMake for generating the project files. With the improved FindWxWidgets script they are using in Cmake 2.4+ this has become a breeze. With Cmake you can generate project files for:
- Makefile
- KDevelop3
- XCode (I believe)
And on windows a whole lot more.
So when I generate my Kdevelop3 workspace, I use that IDE to develop in wxWidgets under linux
Regards,
- Jorgen
-
acsMike
- I live to help wx-kind

- Posts: 153
- Joined: Fri Feb 11, 2005 9:05 am
- Location: Stockholm, Sweden
Post
by acsMike » Mon Jan 22, 2007 8:27 am
Jorg wrote:So when I generate my Kdevelop3 workspace, I use that IDE to develop in wxWidgets under linux
Aha, thanks for that Jorg.
/Michael Ljunggren, developer
Peavey Electronics
Windows: 2.6.3, 2.8.9 (VS2005) ** Mac: 2.6.3 (XCode 3) ** WinCE: 2.8.9 (VS2005), ** GTK: 2.8.9 (Kdevelop)