Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-14 Thread Romain CHANU
@Eric: Yes I agree with you. As you said, we all run out of time and the idea to have a student doing that would be nice. Please keep us updated on this matter. I have come across this Eclipse plugin: http://www.cmakebuilder.com/ (I have not tried but I guess the issue would be the same regarding

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-14 Thread Michael Jackson
Also note that there _is_ CMake Editor support through a third party plugin: http://cmakeed.sourceforge.net The Eclipse Update site is: http://cmakeed.sourceforge.net/eclipse/ The CMakeEd plugin provides syntax coloring, cmake command completion and CMake Help for Eclipse. Note that the plu

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-13 Thread Eric Noulard
2009/10/14 Romain CHANU : > Hi, > > I come back to you after posting on the mailing list of the Eclipse CDT > development: > > http://dev.eclipse.org/mhonarc/lists/cdt-dev/msg16338.html > > As you can see, there is already a bug created but no one has ever done > something about that :-\ Thank you

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-13 Thread Romain CHANU
Hi, I come back to you after posting on the mailing list of the Eclipse CDT development: http://dev.eclipse.org/mhonarc/lists/cdt-dev/msg16338.html As you can see, there is already a bug created but no one has ever done something about that :-\ 2009/10/12 Alexander Neundorf > On Sunday 11 O

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-11 Thread Alexander Neundorf
On Sunday 11 October 2009, you wrote: > Hi everyone, > > Thank you for clarifying this matter. > > As an end-user of Eclipse and CMake, I feel that the combination of both > tools is quite powerful (using CMake, I just threw away autotools...) and > somehow these tools should be well integrated. >

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-11 Thread Romain CHANU
Hi everyone, Thank you for clarifying this matter. As an end-user of Eclipse and CMake, I feel that the combination of both tools is quite powerful (using CMake, I just threw away autotools...) and somehow these tools should be well integrated. I will post a message on the Eclipse mailing-list a

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-11 Thread Alexander Neundorf
On Sunday 11 October 2009, Eric Noulard wrote: > 2009/10/11 Romain CHANU : ... > > Am I correct Bill or do you have any other solutions? > > I let Bill answer that one. Bill is not very involved in the Eclipse stuff, it's mainly Miguel A. Figueroa-Villanueva, Eric and me. Alex __

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-11 Thread Eric Noulard
2009/10/11 Romain CHANU : > Thank you for your quick reply. > > Eclipse should be the one to fix this issue... Do you know if there is any > request for it in Eclipse development? Eclipse fixing the issue means: "someone concerned with this particular problem provide patch or manpower to do it".

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-10 Thread Romain CHANU
Thank you for your quick reply. Eclipse should be the one to fix this issue... Do you know if there is any request for it in Eclipse development? So if I sum up what we have said for this topic, the best solution would be to use Method 2 to make sure we do not lose the SVN tags, but doing this wa

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-10 Thread Bill Hoffman
Romain CHANU wrote: Hi, I have included Bill in this conversation. Bill, I think you are currently working on the development of CMake, could you answer our questions regarding the integration between Eclipse and CMake (cf. emails below)? Alex has been doing most of the Eclipse support.

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-10 Thread Romain CHANU
Hi, I have included Bill in this conversation. Bill, I think you are currently working on the development of CMake, could you answer our questions regarding the integration between Eclipse and CMake (cf. emails below)? Thank you. Romain Chanu 2009/10/8 Romain CHANU > As I said in my previou

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-07 Thread Romain CHANU
As I said in my previous post, we are loosing the version control information using the method 1 (CDT4 generator). I do not really know if it is an Eclipse problem or CMake problem. It would be nice to have some answers from the CMake developers. Anyone could give us some clues? Thank you. Roma

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-07 Thread Alexander Neundorf
On Wednesday 07 October 2009, Eric Noulard wrote: > 2009/10/7 Romain CHANU : > > Yes I agree with you. It would be nice to hide these CMake generated > > files (except those that are generated by your CMakeLists.txt and used > > for compilation purpose, e.g. files generated by external command like

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-06 Thread Eric Noulard
2009/10/7 Romain CHANU : > Yes I agree with you. It would be nice to hide these CMake generated files > (except those that are generated by your CMakeLists.txt and used for > compilation purpose, e.g. files generated by external command like > CodeSynthesis XSD). > One more thing, about the version

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-06 Thread Romain CHANU
Yes I agree with you. It would be nice to hide these CMake generated files (except those that are generated by your CMakeLists.txt and used for compilation purpose, e.g. files generated by external command like CodeSynthesis XSD). One more thing, about the version control integration (SVN) in Ecli

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-06 Thread Philip Lowman
On Mon, Oct 5, 2009 at 1:48 AM, Romain CHANU wrote: > Hi, > > Thank you for your replies. There is still something unclear for me. > > Let me describe the structure of my project (SVN project): > > branches/ > build/ > tags/ > trunk/ > > I run the cmake command in the build directory (i.e "cmake

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-04 Thread Romain CHANU
Hi, Thank you for your replies. There is still something unclear for me. Let me describe the structure of my project (SVN project): branches/ build/ tags/ trunk/ I run the cmake command in the build directory (i.e "cmake ../trunk") which generates the .project and .cproject, as well as all the

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-03 Thread Alexander Neundorf
On Friday 02 October 2009, Philip Lowman wrote: > On Fri, Oct 2, 2009 at 7:38 AM, Mike Jackson wrote: > > I'm confused by the "preprocessor statement highlighting" in Cmake > > 2.8? What exactly is being highlighted? Is there a new Text Editor or > > is this something in CMake-Gui.exe? > > I'm sor

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-02 Thread Philip Lowman
On Fri, Oct 2, 2009 at 7:43 AM, Mike Jackson wrote: > On Fri, Oct 2, 2009 at 4:03 AM, Romain CHANU > wrote: > > Hi, > > > > I am starting to use Eclipse CDT 6.0 / CMake 2.6 for C++ development and > I > > would like to have some information on how to integrate these two > software > > together. >

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-02 Thread Philip Lowman
On Fri, Oct 2, 2009 at 7:38 AM, Mike Jackson wrote: > I'm confused by the "preprocessor statement highlighting" in Cmake > 2.8? What exactly is being highlighted? Is there a new Text Editor or > is this something in CMake-Gui.exe? > I'm sorry, that wasn't very clear. What I meant to say is that

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-02 Thread Mike Jackson
On Fri, Oct 2, 2009 at 4:03 AM, Romain CHANU wrote: > Hi, > > I am starting to use Eclipse CDT 6.0 / CMake 2.6 for C++ development and I > would like to have some information on how to integrate these two software > together. > > I have been reading these pages: > > http://www.itk.org/Wiki/CMake:E

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-02 Thread Mike Jackson
On Fri, Oct 2, 2009 at 6:51 AM, Philip Lowman wrote: > On Fri, Oct 2, 2009 at 4:03 AM, Romain CHANU wrote: >> >> Hi, >> >> I am starting to use Eclipse CDT 6.0 / CMake 2.6 for C++ development and I >> would like to have some information on how to integrate these two software >> together. >> >> I

Re: [CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-02 Thread Philip Lowman
On Fri, Oct 2, 2009 at 4:03 AM, Romain CHANU wrote: > Hi, > > I am starting to use Eclipse CDT 6.0 / CMake 2.6 for C++ development and I > would like to have some information on how to integrate these two software > together. > > I have been reading these pages: > > http://www.itk.org/Wiki/CMake:

[CMake] Best practices when using CMake 2.6 and Eclipse CDT 6.0

2009-10-02 Thread Romain CHANU
Hi, I am starting to use Eclipse CDT 6.0 / CMake 2.6 for C++ development and I would like to have some information on how to integrate these two software together. I have been reading these pages: http://www.itk.org/Wiki/CMake:Eclipse http://www.itk.org/Wiki/Eclipse_CDT4_Generator However, they