VTK-9: How to know which VTK COMPONENT contains which VTK class?
In CMakeLists.txt, we call find_package(VTK)
to get VTK libraries: worked for me as is with apt-get install
VTK package.
Now I need a specific class vtkOpenGLRenderWindow
: I had to build VTK from source (this class is not in the default library installed from apt-get). How to know the name of the associated COMPONENT of this given VTK class? What is the XX I need to pass to find_package(VTK COMPONENT XX)
? Is this documented? If yes where (not found)? Are there best practices?