PDA

View Full Version : Building complex projects without IDE




Mac Player
May 14, 2007, 10:57 AM
Hi all.

In my class we code with the Eclipse IDE. Unfortunately i hate it (but love TextMate) however Eclipse make the process of build our projects very easily. Is there a way to automate the build process so i can get rid of Eclipse for once?



Eraserhead
May 14, 2007, 11:02 AM
You could just setup the files in Eclipse, quit it, edit them in TextMate and only load Eclipse to build the project at the end, it can probably cope with being open at the same time, though you may have to refresh the files at the end.

balamw
May 14, 2007, 11:05 AM
Or, just learn how to use make (http://www.gnu.org/software/make/). That's what it's for right?

B

fimac
May 14, 2007, 12:31 PM
Or, just learn how to use make (http://www.gnu.org/software/make/). That's what it's for right?

Absolutely!

If the OP is coding in Java, then Ant (http://ant.apache.org/faq.html#what-is-ant) would be more appropriate.

mmccaskill
May 14, 2007, 03:45 PM
While I personally like Eclipse, you might want to try NetBeans. Unless you are not interested in using an IDE altogether.

Mac Player
May 15, 2007, 02:43 AM
Guess iŽll have to learn all the compiler options and a bit of xml. Gogo ANT

Palad1
May 15, 2007, 08:08 AM
Just make sure you are up to date with the notions of classpath and packages and you're set to go.

And if you want to redistribute your app, just create a Jar and its Manifest.

(hit the Ant tasks doc file, there are some simple howto around)