> (1) when selecting PARAVIEW_INSTALL_DEVELOPMENT_FILES, I must have
> PARAVIEW_ENABLE_PYTHON:BOOL=ON; otherwise I get build errors for missing
> libraries.

That sounds like a bug. Mind posting the error messages?

> (2) then after a successful build, I try to build my project against these
> ParaView/VTK libraries again; however, I get an error with
> vtkPVInitializePythonModules()

You should link with the library providing this function, as done in
ParaView/Applications/ParaView/CMakeLists.txt. Here's the relevant
code:

if (PARAVIEW_ENABLE_PYTHON)
  target_link_libraries(paraview
    LINK_PRIVATE vtkUtilitiesPythonInitializer)
endif()
_______________________________________________
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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview

Reply via email to