[Paraview] 3.8 problem with remote plugins

2010-06-02 Thread Paul Edwards
Hi, I've just tried building against v3.8 of paraview and I am getting a load error for some remote plugins. It complains about an undefined symbol - vtkPVGUIPluginInterface. Is anyone else experiencing this? I'm running the linux version. Regards, Paul

Re: [Paraview] 3.8 problem with remote plugins

2010-06-02 Thread Utkarsh Ayachit
Have tried clean building your plugin? Can you post the CMakeLists.txt for your plugin? Utkarsh On Wed, Jun 2, 2010 at 5:56 AM, Paul Edwards paul.m.edwa...@gmail.com wrote: Hi, I've just tried building against v3.8 of paraview and I am getting a load error for some remote plugins.  It

Re: [Paraview] 3.8 problem with remote plugins

2010-06-02 Thread Paul Edwards
Utkarsh, I can make my plugins work by adding pqComponents to the TARGET_LINK_LIBRARIES. Should this be necessary? Regards, Paul On 2 June 2010 14:51, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Have tried clean building your plugin? Can you post the CMakeLists.txt for your plugin?

Re: [Paraview] 3.8 problem with remote plugins

2010-06-02 Thread Utkarsh Ayachit
Ah...the problem is due to the fact that ${OUTSRCS} was passed in as SOURCES and not GUI_SOURCES. Actually, any Qt based classes should be passed in as GUI_SOURCES. So try the following: ADD_PARAVIEW_PLUGIN(MeshCutter 1.0 GUI_INTERFACES ${OUTIFACES}

Re: [Paraview] 3.8 problem with remote plugins

2010-06-02 Thread Paul Edwards
Great - that fixed it :) On 2 June 2010 16:03, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Ah...the problem is due to the fact that ${OUTSRCS} was passed in as SOURCES and not GUI_SOURCES. Actually, any Qt based classes should be passed in as GUI_SOURCES. So try the following: