<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
Hi,
<br />
<br />
I'm trying to build paraview from source. For this I'm using:
<br />
<br />
Windows 10
<br />
Visual Studio 2015
<br />
CMake 3.6.1
<br />
paraview 5.1.2
<br />
Qt 5.7
<br />
msmpi 7.1
<br />
<br />
I downloaded the source code of paraview from http://www.paraview.org/download/ and generated the project in CMake.
<br />
Every time I switch on BUILD_EXAMPLES, I get the following error messages in VS:
<br />
<br />
Error    LNK2001    unresolved external symbol "void __cdecl
vtkRenderingFreeType_AutoInit_Construct(void)" (?vtkRenderingFreeType_AutoInit_Construct@@YAXXZ)
[C:\Kitware\ParaView-v5.1.0\bin\Examples\All\Plugins\Autostart\Autostart.vcxproj]  
 ParaViewExamples    C:\Kitware\ParaView-v5.1.0\bin\Autostart_Plugin.obj  
 1   
<br />
<br />
Error    LNK2019    unresolved external symbol "void __cdecl
vtkRenderingFreeType_AutoInit_Construct(void)" (?vtkRenderingFreeType_AutoInit_Construct@@YAXXZ) referenced in function
"public: __cdecl vtkRenderingCore_AutoInit::vtkRenderingCore_AutoInit(void)" (??0vtkRenderingCore_AutoInit@@QEAA@XZ)
[C:\Kitware\ParaView-v5.1.0\bin\Examples\All\Plugins\Autostart\Autostart.vcxproj]  
 ParaViewExamples  
 C:\Kitware\ParaView-v5.1.0\bin\pqMyApplicationStarterImplementation.obj    1   
<br />
<br />
I found the same problem already mentioned here:
<br />
http://public.kitware.com/pipermail/paraview-developers/2015-November/004094.html,
<br />
so I added the command "target_link_libraries(paraview LINK_PRIVATE vtkRenderingFreeType)" to the CMake file located in
C:\Kitware\ParaView-v5.1.2\Applications\ParaView - right after the "build_paraview_client()" macro, but I keep running
into the same error.
<br />
<br />
I also tried the build on another system (windows 7, Visual Studio 2010, Qt 4.8.7), but to no avail.
<br />
By the way, I wonder why the ParaviewExamples project in VS doesn't contain neither source nor header files. Is that
project properly generated by CMake?
<br />
<br />
Thanks in advance!
</body>
</html>