<div dir="ltr"><div>Hi Sean,</div><div><br></div><div>Yeah, that library has been gone for a week or so. Just yesterday, I finally repaired my own cmake scripts to compensate for this, and also to allow for OpenGL2 compilation:</div><div><br></div><div> # These are the libraries that we absolutely need to link to</div><div> set(VTK_LIBS vtkRenderingCore vtkRenderingImage vtkInteractionStyle</div><div> vtkRenderingFreeType vtkIOImage vtkIOMINC vtkIOLegacy</div><div> vtkImagingStencil vtkImagingStatistics vtksys)</div><div><br></div><div> # These are libraries that we link to, only if they are present</div><div> set(VTK_EXTRA_LIBS vtkIOMPIImage</div><div> vtkRenderingOpenGL vtkRenderingFreeTypeOpenGL</div><div> vtkRenderingOpenGL2 vtkRenderingFreeTypeOpenGL2)</div><div><br></div><div> # Check for the existence of each of the EXTRA libs</div><div> foreach(TMP_LIB ${VTK_EXTRA_LIBS})</div><div> list(FIND VTK_LIBRARIES ${TMP_LIB} TMP_INDEX)</div><div> if(TMP_INDEX GREATER -1)</div><div> set(VTK_LIBS ${VTK_LIBS} ${TMP_LIB})</div><div> endif()</div><div> endforeach()</div><div><br></div><div> # Now use VTK_LIBS in target_link_libraries()</div><div><br></div><div> - David</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 22, 2015 at 1:55 PM, Sean McBride <span dir="ltr"><<a href="mailto:sean@rogue-research.com" target="_blank">sean@rogue-research.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
When I build VTK 6.2, one of the resulting libs is "lvtkRenderingFreeTypeOpenGL.a". I've just built git master and that library doesn't seem to be built anymore. Is that expected/normal?<br>
<br>
Cheers,<br></blockquote></div></div></div>