joint
(Mike)
March 14, 2024, 10:54am
1
Hello everybody!
I am trying to develop a paraview plugin, however, it does not compile
For example, it says,
Cannot open include file: 'vtkChartsCoreModule.h': No such file or directory
But I have written into the paraview.plugin:
REQUIRES_MODULES
VTK::ChartsCore
What could be wrong?
Thank u!
mwestphal
(Mathieu Westphal (Kitware))
March 14, 2024, 3:49pm
2
Are you using vtkChartCore directly in the plugin ? Not in an internal VTK module of the plugin ?
ben.boeckel
(Ben Boeckel (Kitware))
April 1, 2024, 8:55pm
3
Plugins do not automatically link to required modules (because an inner module could be what needs it). Plugin targets should explicitly link to dependencies (such as VTK::ChartsCore
).
1 Like