[cmake-developers] [CMake 0013953]: Visual Studio Express 2008 not found

Mantis Bug Tracker mantis at public.kitware.com
Tue Feb 26 02:47:18 EST 2013


The following issue has been SUBMITTED. 
====================================================================== 
http://www.cmake.org/Bug/view.php?id=13953 
====================================================================== 
Reported By:                mseise
Assigned To:                
====================================================================== 
Project:                    CMake
Issue ID:                   13953
Category:                   CMake
Reproducibility:            always
Severity:                   major
Priority:                   low
Status:                     new
====================================================================== 
Date Submitted:             2013-02-26 02:47 EST
Last Modified:              2013-02-26 02:47 EST
====================================================================== 
Summary:                    Visual Studio Express 2008 not found
Description: 
My Visual Studio Express 2008 environment is not found, thus the correct
toolchain is not set up properly. 

The problem is in CMakeVS9FindMake.cmake

The lines

set( _CMAKE_MAKE_PROGRAM_NAMES devenv)
if(NOT CMAKE_CROSSCOMPILING)
  set( _CMAKE_MAKE_PROGRAM_NAMES ${_CMAKE_MAKE_PROGRAM_NAMES} VCExpress)
endif()

create the search String "devenvVCExpress" which is not found - for me the
simple workaround 

set( _CMAKE_MAKE_PROGRAM_NAMES devenv)
if(NOT CMAKE_CROSSCOMPILING)
  set( _CMAKE_MAKE_PROGRAM_NAMESVCExpress)
endif()

solved the issue.

Steps to Reproduce: 
Just use any cmake setup...

Additional Information: 
I have VS 2010 Professional and VC Express 2008 with 64 bit setup installed (for
building python 2.7 bindings of ITK)
====================================================================== 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2013-02-26 02:47 mseise         New Issue                                    
======================================================================




More information about the cmake-developers mailing list