The problem might be that your xml Input line looks like:<br><InputProperty name="Input" command="SetInput"><br><br>When all my custom ones are using:<br><InputProperty name="Input" command="SetInputConnection">
<br><br>Also your CMakeLists looks odd I generally use a format somthing like this<br>PROJECT(Cloud)<br>FIND_PACKAGE(ParaView REQUIRED)<br>INCLUDE(${PARAVIEW_USE_FILE})<br> <div id="1f75" class="ArwC7c ckChnd">
<br>ADD_PARAVIEW_PLUGIN(CloudSMPlugin "1.0" <br> SERVER_MANAGER_XML Cloud.xml<br> SERVER_MANAGER_SOURCES vtkCloud.cxx<br> )<br>#SOURCES can be used to reference other cxx files your server manager sources includes
<br>#like SOURCES realCloud.cxx<br> <br>target_link_libraries(CloudSMPlugin)</div><br><br><div class="gmail_quote">On Dec 11, 2007 5:08 PM, Kent Eschenberg <<a href="mailto:eschenbe@psc.edu">
eschenbe@psc.edu</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Clint: Thanks! Yes and yes; files attached. - Kent<br><div>
<div></div><div class="Wj3C7c"><br><a href="mailto:clinton@elemtech.com">clinton@elemtech.com</a> wrote:<br>> Are your custom filters in the "filters" group in your server manager xml?<br>> <ProxyGroup name="filters">
<br>><br>> And your server manager xml for the filters was added to the build using<br>> PARAVIEW_INCLUDE_SERVERMANAGER_RESOURCES?<br>><br>> Clint<br>><br>> On Tuesday 11 December 2007 2:40:22 pm Kent Eschenberg wrote:
<br>>> Using the notes at<br>>><br>>> <a href="http://www.paraview.org/Wiki/ExtendingParaView" target="_blank">http://www.paraview.org/Wiki/ExtendingParaView</a><br>>><br>>> I've successfully added two custom readers to
3.2.1. However my custom<br>>> filter does not show up in the pulldown menu for filters. All 3 are<br>>> assigned to<br>>><br>>> PARAVIEW_EXTRA_EXTERNAL_MODULE<br>>><br>>> and the "USE" and "ON" CMake options for all 3 are set. The debugger can
<br>>> find the constructor for the custom filter. Is there anything needed to add<br>>> the name of the custom filter to the filter menu?<br>>><br>>> The Tools->Manage Plugins menu is empty.<br>
>><br>>> TIA!<br>>> Kent<br>>> Pittsburgh Supercomputing Center<br></div></div><br>SET (cloud_SRCS<br> ${cloud_SOURCE_DIR}/vtkCloud.cxx<br> )<br><br>INCLUDE_DIRECTORIES(${cloud_SOURCE_DIR})<br>INCLUDE_DIRECTORIES(${cloud_SOURCE_DIR}/..)
<br><br>PARAVIEW_INCLUDE_WRAPPED_SOURCES("${cloud_SRCS}")<br><br>PARAVIEW_INCLUDE_SERVERMANAGER_RESOURCES("${cloud_SOURCE_DIR}/cloudSM.xml")<br><br>_______________________________________________<br>ParaView mailing list
<br><a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br><a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br><br></blockquote>
</div><br>