Re: [CMake] Visual Studio 2010 Express

2010-05-11 Thread Micha Renner
Am Montag, den 10.05.2010, 12:15 -0400 schrieb Bill Hoffman: On 5/10/2010 12:10 PM, Micha Renner wrote: Running this CMake script... For VS 2010 express you should need a fix in git master, and can be fixed for any 2.8.1 install. The fix is to copy the Modules/CMakeVS10FindMake.cmake

[CMake] Visual Studio 2010 Express

2010-05-10 Thread Micha Renner
Running this CMake script... PROJECT(T) CMAKE_MINIMUM_REQUIRED(VERSION 2.8) INCLUDE(CheckFunctionExists) INCLUDE(CheckIncludeFile) INCLUDE(CheckTypeSize) INCLUDE(CheckSymbolExists) ENABLE_TESTING() TRY_RUN(_result _compileResult ${CMAKE_CURRENT_BINARY_DIR}

Re: [CMake] Visual Studio 2010 Express

2010-05-10 Thread Bill Hoffman
On 5/10/2010 12:10 PM, Micha Renner wrote: Running this CMake script... For VS 2010 express you should need a fix in git master, and can be fixed for any 2.8.1 install. The fix is to copy the Modules/CMakeVS10FindMake.cmake from git master of CMake into a 2.8.1 release tree. Have you done