Re: [CMake] CMake 2.8.9 missing ProjectGUID in vcproj of VS .NET 2003

2012-09-04 Thread Sören Textor
Hi David, Hi Bill The GUID ist part of the vcproj by design. Of course we can use 2.8.7 to fix that problem. But in my eyes it would make sense to fix that problem in future releases of cmake. It's just changing if(this->Version >= VS8) into if(this->Version >= VS7) Thus: it's not a s

Re: [CMake] cmake + VS 2012

2012-09-04 Thread Biddiscombe, John A.
I have tried VS 2012 and I'm not getting exceptions when cmake regenerates projects. They get reloaded by the IDE and so it looks like things are good. Only one day of trying, so I may still be disappointed, but so far I'm happy. Hopefully I won't need those add-ins, but since I use intel fortra

Re: [CMake] Fwd: Failed to create project in my.cdash.org

2012-09-04 Thread Julien Jomier
Hi Jupiter, It sounds like a browser compatibility issue. Can you tell me which web browser you are using to access my.cdash.org? Thanks, Julien Original Message Subject: [CMake] Failed to create project in my.cdash.org Date: Tue, 4 Sep 2012 18:10:10 -0700 (PDT) From: hce

[CMake] Failed to create project in my.cdash.org

2012-09-04 Thread hce
Hi, I was able to run ctest -D Experimental and to submit test report from VTK build process. Now I am setting up my own test project in http://my.cdash.org, and hope to run ctest on my own source code and to submit to my project in my.cdash.org. I guess there are two ways to display results on

Re: [CMake] CMake 2.8.9 missing ProjectGUID in vcproj of VS .NET 2003

2012-09-04 Thread Bill Hoffman
On 9/4/2012 2:53 PM, David Cole wrote: The value of "this->Version" used to be "71" for Visual Studio 7.1, and the ProjectGUID chunk was unintentionally generated since 71 > 8. When the version number values were fixed so that this->Version could properly be compared, this code started having its

Re: [CMake] CMake 2.8.9 missing ProjectGUID in vcproj of VS .NET 2003

2012-09-04 Thread David Cole
This appears to be due to this change: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1be4b6f4 which was made in November, 2011 and first appeared in CMake 2.8.7. Specifically, this chunk: - if(this->Version >= 8) + if(this->Version >= VS8) { fout << "\tProjectGUID=\"{" << gg

Re: [CMake] cmake + VS 2012

2012-09-04 Thread David Cole
The Visual Studio addin is from vscommands.com and is mentioned in this bug report on the issue: http://public.kitware.com/Bug/view.php?id=11258 As you can tell from reading through the notes, we never did find a satisfactory solution to the problem... issue is still open, but folks who've trie

Re: [CMake] cmake + VS 2012

2012-09-04 Thread Michael Jackson
John. There was some sort of "plugin" or "Addin" that helped out the situation of reloading after CMake runs of VS2010. It was mentioned on the CMake mailing list sometime in the past year I think. I was able to install it and my VS2010 builds do run much smoother now. Not sure if that is of

Re: [CMake] CMake 2.8.9 missing ProjectGUID in vcproj of VS .NET 2003

2012-09-04 Thread Sören Textor
We used CMake 2.8.3 and 2.8.5. But since 2.8.9 the ProjectGUID is missing in the generated vcproj files (VS 2003 .NET). We only have problems with some postbuild tools that are searching for that GUID inside the project file. The GUID ist still inside the sln and inside the VS 2008, 2010 and "20

Re: [CMake] [Insight-users] Building FLTK for Visual Studio 2010

2012-09-04 Thread John Drescher
On Tue, Sep 4, 2012 at 6:33 AM, Zein Salah wrote: > Hi, > > Previously, i used to build fltk 1.1.7 with Cmake for VS2008 and > everything (ITK, InsightApplication, etc.) worked fine. > > I try now to make the same using Cmake 2.8.9 for VS2010. > Building FLTK 1.1.7 works fine (No error!). But Cma

Re: [CMake] cmake + VS 2012

2012-09-04 Thread Klaim - Joël Lamotte
On Tue, Sep 4, 2012 at 1:16 PM, Biddiscombe, John A. wrote: > > Thanks. that’s good to know. > > (I suspect that because I do a lot of cmakelists.txt editing on large > projects that I get hit harder than most by the macro problem). > > > Maybe, also if you don't have very big RAM. Now, my

Re: [CMake] CMake 2.8.9 missing ProjectGUID in vcproj of VS .NET 2003

2012-09-04 Thread David Cole
We did not change anything related to that in 2.8.9 to the best of my knowledge... What problem do you have now that you didn't have before? (Can I reproduce your problem here...?) Thanks, David On Tue, Sep 4, 2012 at 3:46 AM, Sören Textor wrote: > Hi > What's the reason to neglect the Proje

Re: [CMake] cmake + VS 2012

2012-09-04 Thread Biddiscombe, John A.
> I'm working on a big project with both VS2010 and VS2012, I don't have such problems. Now I use VS2012 almost only and to me it seems faster to load. < Thanks. that’s good to know. (I suspect that because I do a lot of cmakelists.txt editing on large projects that I get hit harder than most by

[CMake] Building FLTK for Visual Studio 2010

2012-09-04 Thread Zein Salah
Hi, Previously, i used to build fltk 1.1.7 with Cmake for VS2008 and everything (ITK, InsightApplication, etc.) worked fine. I try now to make the same using Cmake 2.8.9 for VS2010. Building FLTK 1.1.7 works fine (No error!). But Cmake fails to generate a project for InsightApplication. First, i

Re: [CMake] cmake + VS 2012

2012-09-04 Thread Klaim - Joël Lamotte
On Tue, Sep 4, 2012 at 11:20 AM, Biddiscombe, John A. wrote: > I had a lot of trouble with cmake and VS 2010 due to the IDE crashing when > projects were regenerated by cmake and having to click reload millions of > times. > > Can anyone tell me if things are better with visual studio 2012? I want

[CMake] cmake + VS 2012

2012-09-04 Thread Biddiscombe, John A.
I had a lot of trouble with cmake and VS 2010 due to the IDE crashing when projects were regenerated by cmake and having to click reload millions of times. Can anyone tell me if things are better with visual studio 2012? I want to upgrade some projects, but will delay a while if I know these IDE

Re: [CMake] Check if a command exists?

2012-09-04 Thread Mathias Gaunard
On 03/09/2012 21:59, Rui Maciel wrote: I have a small project which includes a couple of parsers whose lexers are generated by re2c. I intended to set cmake so that it could check if re2c is present in the system, but after browsing through the docs I've ended up empty-handed. So, is there a wa

[CMake] CMake 2.8.9 missing ProjectGUID in vcproj of VS .NET 2003

2012-09-04 Thread Sören Textor
Hi What's the reason to neglect the ProjectGUID entry inside the generated vcproj-file at the VS .Net 2003 configuration since 2.8.9? Best regards SirAnn -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please ke