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. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


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 uses 9.10 
as a project format is very, very old I would strongly suggest 
defaulting the intelVersion string to:


intelVersion - 11.0 ;

and changing the if statement to:

if (intelVersion.find(10) == 0)
  {
intelVersion = 9.10 ;
  }

Then you wouldn't have to patch cmLocalVisualStudio7Generator.cxx when 
new versions of Fortran are released, until the project file format 
actually changes to something like 12.0.


Best,

Dick Munroe

On 9/9/13 11:26 AM, Brad King wrote:

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
upstream?

Thanks,
-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. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


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 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. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


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 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 V14.
As usual, cmLocalVisualStudio7Generator has to be updated to include yet
another check for version and I have to build cmake from sources.

However, damned if I can figure out how to get cmake-gui built. I've got Qt
installed.  When I configure the VS build, it seems to find the Qt
libraries, but the built solution doesn't include cmake-gui.

I've poked through the files, grepped for cmake-gui but I can't find any
specific instructions on getting cmake-gui built and I do this just often
enough to forget how between events.

So what do I have to do the the configuration for 2.8.11.2 to get it to
build cmake-gui?

Thanks in advance,

Dick Munroe

--

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. For more
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


--

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. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


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:

intelVersion - 11.0 ;

Thanks.  I constructed a change based on that:

  http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=cd90a0ea

Please test out the patch to make sure it works with your version.

Thanks,
-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. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


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 V14.
 As usual, cmLocalVisualStudio7Generator has to be updated to include yet
 another check for version and I have to build cmake from sources.

 However, damned if I can figure out how to get cmake-gui built. I've got Qt
 installed.  When I configure the VS build, it seems to find the Qt
 libraries, but the built solution doesn't include cmake-gui.

 I've poked through the files, grepped for cmake-gui but I can't find any
 specific instructions on getting cmake-gui built and I do this just often
 enough to forget how between events.

 So what do I have to do the the configuration for 2.8.11.2 to get it to
 build cmake-gui?

 Thanks in advance,

 Dick Munroe

 --

 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. For more
 information on each offering, please visit:

 CMake Support: http://cmake.org/cmake/help/support.html
 CMake Consulting: http://cmake.org/cmake/help/consulting.html
 CMake Training Courses: http://cmake.org/cmake/help/training.html

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Follow this link to subscribe/unsubscribe:
 http://www.cmake.org/mailman/listinfo/cmake
--

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. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


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
upstream?

Thanks,
-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. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake