Burlen, It would work for everything, but for plugins that really need client-side plugin to be loaded e.g. representation plugins, view plugins, you should not do this. In other words, any plugin that only is needed on the data processing side should indeed always use REQUIRED_ON_SERVER flag. Anything else, shouldn't.
Utkarsh On Fri, Jan 17, 2014 at 5:12 PM, Burlen Loring <[email protected]> wrote: > Hi Utkarsh and Andy, > > static linking *really* improves performance on Hopper. One issue though is > that plugins are automatically "loaded", so when connecting to a statically > linked server the plugin manager immediately pops up and requests that the > user load all the plugins. Does the REQUIRED_ON_SERVER flag fix this? in > other words is it just for readers? or does it work with other plugins as > well? > > Burlen > > > On 01/16/2014 09:37 AM, Utkarsh Ayachit wrote: > > By default plugins are treated as "REQUIRED_ON_SERVER" and > "REQUIRED_ON_CLIENT". Simply add a REQUIRED_ON_SERVER flag in your > add_paraview_plugin(...) call. > > For example: > > ADD_PARAVIEW_PLUGIN(MyReader "1.0" > SERVER_MANAGER_XML MyPNGReader.xml > SERVER_MANAGER_SOURCES vtkMyPNGReader.cxx > REQUIRED_ON_SERVER) > > That should do the trick. > > Utkarsh > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the ParaView Wiki at: > http://paraview.org/Wiki/ParaView > > Follow this link to subscribe/unsubscribe: > http://www.paraview.org/mailman/listinfo/paraview > > _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://www.paraview.org/mailman/listinfo/paraview
