<div dir="ltr">This might be a silly question, but has this VS2013 installation built anything<div>other than VTK?  Check the file CMakeFiles/CMakeError.log, it might provide</div><div>some clues (e.g. maybe a TryCompile failed when it shouldn't have.)</div><div><div><br></div><div> - David</div><div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Apr 2, 2015 at 2:54 PM, Philippe Bouttefroy <span dir="ltr"><<a href="mailto:pbouttefroy@nvidia.com" target="_blank">pbouttefroy@nvidia.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi David, hi Ben,<br>
<br>
Thanks for looking into the issue! Unfortunately, CMake 2.8.12 did not resolve my issue. I can send the CMake output, if you would like.<br>
<br>
However, what I observed is that the first errors that I get with VS2013 is that it is looking for <iostream.h> instead of <iostream> (in /build/Utilities/KWSys/ios/iostream) because vtksys_IOS_USE_ANSI is not set. Furthermore, CMake outputs:<br>
“Checking whether ANSI stream headers are available – no”. I would have expected “yes” instead. I tried to dig into how the value was determined but could not figure it out.<br>
<br>
Do you have any clue on whether this is the root cause of my issue? Any idea on how to debug this?<br>
<br>
Again, thanks for your time!<br>
<br>
Best,<br>
Philippe<br>
<div><div class="h5"><br>
-----Original Message-----<br>
From: Ben Boeckel [mailto:<a href="mailto:ben.boeckel@kitware.com">ben.boeckel@kitware.com</a>]<br>
Sent: Thursday, April 02, 2015 1:49 PM<br>
To: David Gobbi<br>
Cc: Philippe Bouttefroy; <a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>
Subject: Re: [vtkusers] VTK-6.1 and Visual Studio 2013 on VirtualBox<br>
<br>
On Thu, Apr 02, 2015 at 12:50:10 -0600, David Gobbi wrote:<br>
> Hi Philippe,<br>
><br>
> Around a year ago, I did a 64-bit build of VTK 6.1 (or thereabouts)<br>
> with Visual Studio 2013 Express on Win7-64 running on VirtualBox.  I<br>
> didn't run into any errors like the one you describe above.<br>
><br>
><br>
> I suspect that all the errors are related to this:<br>
><br>
>   CMake Warning (dev) at Utilities/KWSys/vtksys/CMakeLists.txt:264<br>
>   (CONFIGURE_FILE):<br>
>     configure_file called with unknown argument(s): COPY_ONLY<br>
><br>
> You're using a version of CMake 3.x that expects cmake files to use<br>
> COPYONLY instead of the older COPY_ONLY.  Try cmake 2.8.12, and I bet<br>
> the problem will disappear.<br>
<br>
This isn't an error but a warning. CMake 3 is informing that COPY_ONLY is no longer supported.<br>
<br>
> Does anyone else know why CMake 3 would be giving this error?  It<br>
> seems like a nasty bit of backwards-incompatibility.<br>
<br>
The real problems are probably pointed out by CMP0054. Places which<br>
check:<br>
<br>
    set(compiler "MSVC")<br>
    if (compiler STREQUAL "MSVC")<br>
<br>
turn into:<br>
<br>
    if (MSVC STREQUAL 1)<br>
<br>
and are therefore *false* because MSVC is defined as "1" with it and not defined otherwise and "if" automatically dereferences. The new behavior is that quoted strings are not considered for automatic expansion thereby pointing out probable errors in the previous code. My guess is that MSVC detection needed is being skipped somewhere because of the bugs pointed out (*not* caused) by CMP0054.<br>
<br>
--Ben<br></div></div></blockquote></div></div></div></div></div>