vote up 4 vote down star
1

Was hoping to find something relevant in the "related" box ...

Is there a good emacs project management plugin somewhere?

I'm just playing with new gnumacs and need something simple; something which is gonna keep several files together tied with the project, and enable me to compile them (pretty much just put their names in with the compile command, ... compiler file1. file2. file3.) ... and that's pretty much it.

flag

66% accept rate
1  
like a makefile? – Cheeso Jun 11 at 2:12
@Cheeso - I'm trying to avoid makefiles, as much as I can. They're not really happy solution on windows, and not really happy with fortran/python either. – ldigas Jun 11 at 2:15
hmm. ok. why are makefiles no good on windows?? Also I don't get what fortran and python have to do with anything, I thought you were asking about compiling from within emacs. – Cheeso Jun 11 at 11:51
@Cheeso - I do not understand. Yes, I'm asking about compiling from emacs, but why did you suggest makefiles then ? – ldigas Jun 12 at 10:28

2 Answers

vote up 3 vote down

I believe that CEDET may have what you are looking for.

link|flag
Yes, EDE library can do this. Please look to my answer to previous question - stackoverflow.com/questions/749888/… – Alex Ott Jun 11 at 7:45
vote up 6 vote down

There is also eproject: http://wiki.github.com/jrockway/eproject

This approach will provide the most functionality if you are willing to write some Lisp to do exactly what you want. Eproject handles managing the projects, you add the sugar over that. (Eproject comes with eproject-extras, which is useful and serves as an example of how to write your own utility functions.)

For your needs, a function like this would suffice:

(defun compile-my-c-project ()
    (interactive)
    (compile (format "gcc %s -o %s"
                 (reduce (lambda (a b) (format "%s %s" a b))
                         (eproject-list-project-files)) ;; perhaps filter here
                 (eproject-name)))

This will take all the "project files", and produce an executable named after the project's name (usually the containing directory, but you can change that in the .eproject file).

The "project files" can be declared in the project type definition, or via the .eproject file. See the wiki for examples.

(Note that we use the "compile" command here, so that C-x ` works for navigating to errors.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.