tags:

views:

38

answers:

1

I'm interested in setting up an IDE (preferably Eclipse or Netbeans) for a project that uses C++ and ROOT and have it be able to compile for me. Is this possible?

Source code is available for ROOT, so there should be some way of hooking these things together...

A: 

Most of the ROOT users I know use emacs or vi.

That said, if you can specify the build, this should be possible. Make use of root-config commands to specify the paths and libraries.

ROOT_HEADERS_PATH=$(root-config --cflags)

and so on. Just root-config will give you a list of accepted arguments.

I'd guess that the most likely stumbling block for this is the generation of the rootcint files for classes that you want to incorporate into the root TObject tree and use in the cint shell.

dmckee
I use vim my self when working with ROOT but I just thought it would make my life easier if I got this thing working.
Ryuho
@Ryuho: As a staunch emacs partisan, I can see where you went wrong...
dmckee