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
======================================================================
--
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
Please keep messages on-topic and check the CMake FAQ at:
http://www.cmake.org/Wiki/CMake_FAQ
Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers