Hi all. On Windows, Visual Studio 2010, some machines in our company experience this error ( http://connect.microsoft.com/VisualStudio/feedback/details/540902/tracker-exe-response-file-not-found) when "detecting C compiler", which makes it impossible to use CMake on them. The workaround (mentioned in the link) would be to add the following to the .vcxproj generated for try_compile:
<PropertyGroup> <TrackFileAccess>false</TrackFileAccess> </PropertyGroup> Or add the following to the msbuild command line: /p:TrackFileAccess=false Is there a way to do this with the current capabilities of CMake (any of env.var, cache var, command-line option, ...)? Or should I raise a bug report? Has anyone encountered this problem, and is there a solution? Thanks in advance. Petr
-- 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://www.cmake.org/mailman/listinfo/cmake
