Re: [CMake] Building cmake-gui on windoze from scratch...

2013-09-11 Thread Brad King
On 09/10/2013 08:33 PM, Dick Munroe wrote: It appears to work. Great, thanks for reporting back. -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community.

Re: [CMake] Building cmake-gui on windoze from scratch...

2013-09-10 Thread Dick Munroe
No patch, but the fix is in cmLocalVisualStudio7Generator.cxx Search for: intelVersion Shortly afterward there is an if statement that begins if (intelVersion.find(13)... Add: intelVersion.find(14) == 0 || to the if statement. However, given that the version of Intel Fortran that actually

Re: [CMake] Building cmake-gui on windoze from scratch...

2013-09-10 Thread Brad King
On 09/10/2013 04:56 PM, Dick Munroe wrote: VS 2010 complains about a the project being created by a later version of the compiler which would indicate that the intelVersion is wrong when the project is generated. What version do you actually see in the .vfproj files? -Brad -- Powered by

Re: [CMake] Building cmake-gui on windoze from scratch...

2013-09-10 Thread Dick Munroe
Yeah, I figured that out eventually. It would be a bit more obvious if that option was named something like: BUILD_CMake_GUI or something that obviously connected with what I wanted to do, e.g., build cmake-gui. Best, Dick Munroe On 9/9/13 10:17 AM, Robert Maynard wrote: You need to

Re: [CMake] Building cmake-gui on windoze from scratch...

2013-09-10 Thread Dick Munroe
It appears to work. Dick Munroe On 9/10/13 1:49 PM, Brad King wrote: On 09/10/2013 11:37 AM, Dick Munroe wrote: However, given that the version of Intel Fortran that actually uses 9.10 as a project format is very, very old I would strongly suggest defaulting the intelVersion string to:

Re: [CMake] Building cmake-gui on windoze from scratch...

2013-09-09 Thread Robert Maynard
You need to enable the BUILD_QtDialog option for cmake-gui to be built. On Sat, Sep 7, 2013 at 8:40 AM, Dick Munroe mun...@csworks.com wrote: Not exactly the right group to ask, but I can't find details on the web so... Anyway, I'm trying to use the latest version of Intel Fortran which is

Re: [CMake] Building cmake-gui on windoze from scratch...

2013-09-09 Thread Brad King
On 09/07/2013 08:40 AM, Dick Munroe wrote: Anyway, I'm trying to use the latest version of Intel Fortran which is V14. As usual, cmLocalVisualStudio7Generator has to be updated to include yet another check for version Can you please provide the patch for that so we can integrate it