<div dir="ltr"><div><div>Thanks for the info. I make the change (comment out that line)
 and rebuild. This time i can see WebApplication, vtkWebApps, 
vtkWebCore... and etc in the Solution Explorer in VS 2013. And when I 
build all solutions, everything compile properly except 2 errors:<br><br>Error   
 7064    error LNK2019: unresolved external symbol 
"__declspec(dllimport) public: static class vtkAVIWriter * __cdecl 
vtkAVIWriter::New(void)" (__imp_?New@vtkAVIWriter@@SAPEAV1@XZ) referenced in function "protected: bool __cdecl vtkSMAnimationSceneImageWriter::CreateWriter(void)" (?CreateWriter@vtkSMAnimationSceneImageWriter@@IEAA_NXZ)    D:\Files\ParaView431\build11\ParaViewCore\Animation\vtkSMAnimationSceneImageWriter.obj    vtkPVAnimation<br>Error    7065    error LNK1120: 1 unresolved externals    D:\Files\ParaView431\build11\bin\Release\vtkPVAnimation-pv4.3.dll    vtkPVAnimation<br><br></div>Do
 I need vtkPVAnimation ? I only interested in ParaViewWeb, how can I 
turn that off from cmake (if ParaViewWeb do not require vtkPVAnimation).
 <br><br></div>Thanks for your help.</div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, May 18, 2015 at 10:28 PM, Sebastien Jourdain <span dir="ltr"><<a href="mailto:sebastien.jourdain@kitware.com" target="_blank">sebastien.jourdain@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Replace the following CMake lines<div><br></div><div><span class=""><div># ParaViewWeb on Windows needs win32api which is not provided by default</div><div># For now the default behavior would be to disable it on Windows build</div></span><div>if (WIN32)</div><div>  set(PARAVIEW_ENABLE_WEB OFF CACHE BOOL "" FORCE)</div><div>else()</div><div>  cmake_dependent_option(PARAVIEW_ENABLE_WEB "Enable/Disable web support" ON</div><div>    "PARAVIEW_ENABLE_PYTHON" OFF)</div><div>endif()</div></div><div><br></div><div>with the following =====</div><div><br></div><div><span class=""><div># ParaViewWeb on Windows needs win32api which is not provided by default</div><div># For now the default behavior would be to disable it on Windows build</div></span><div>if (WIN32)</div><div>  # set(PARAVIEW_ENABLE_WEB OFF CACHE BOOL "" FORCE)</div><div>else()</div><div>  cmake_dependent_option(PARAVIEW_ENABLE_WEB "Enable/Disable web support" ON</div><div>    "PARAVIEW_ENABLE_PYTHON" OFF)</div><div>endif()</div></div><div><br></div><div>Then you should be good to go.</div><div><br></div><div>Seb</div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Mon, May 18, 2015 at 3:09 AM, Yu Yu <span dir="ltr"><<a href="mailto:jtxqhao@gmail.com" target="_blank">jtxqhao@gmail.com</a>></span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><div><div><div><div><div>Hi,<br><br></div>I want to build ParaViewWeb on windows (64-but), I have install win32api for python in my machine. I am using cmake-gui, and every time I click ParaView_Enable_Python" to ON, and ParaView_Enable_Web to ON, cmake will turn ParaView_Enable_Web to off. Is there a way to make it on ?<br><br></div>I found this in the cmake text:<br># ParaViewWeb on Windows needs win32api which is not provided by default<br># For now the default behavior would be to disable it on Windows build<br><br></div>Can I know how to enable ParaViewWeb for windows build ?<br><br></div>Thanks for your help.<br></div></div>
<br></div></div>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=ParaView" target="_blank">http://markmail.org/search/?q=ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/paraview" target="_blank">http://public.kitware.com/mailman/listinfo/paraview</a><br>
<br></blockquote></div><br></div>
</blockquote></div><br></div>