Skip to content

Use standard macro to define symbol visibility in ParaView plugins

Steven Hahn requested to merge quantumsteve/paraview:symbols_visibility into master

This allows plugins to be used in custom applications where symbols are hidden by default. In Mantid, we recently changed our GCC compiler flags so that symbols are hidden by default, and found that in the vtkPVPlugin.h file we need to define C_EXPORT as __attribute__((visibility("default"))).

Merge request reports