[vtkusers] understanding testing in vtk

David Doria daviddoria at gmail.com
Mon Apr 25 10:09:04 EDT 2011


On Mon, Apr 25, 2011 at 8:06 AM, Liam Kurmos <quantum.leaf at gmail.com> wrote:
> some tests in VTK/Graphics/Testing/Cxx do not appear to be built.
> in particular im looking at TestReebGraph.cxx
>
> id like to understand why some tests are not built and where they are selected.
>
> Liam

If you look at VTK/Graphics/Testing/Cxx/CMakeLists.txt you'll see that
TestReebGraph.cxx is wrapped in

IF (VTK_USE_RENDERING AND VTK_USE_DISPLAY)

and then further in

IF(VTK_USE_BOOST)

So you must have these three things turned on in your VTK build for
the test to be built.

David



More information about the vtkusers mailing list