How to deploy a custom app based on ParaView?

I am having some troubles to deploy the application (i.e., need to move all relevant ParaView files to target location). Was there a CMake API to do it?

There is basically two ways to do it.

  1. The right way: Superbuild

ParaView uses the superbuild to deploy binary packages and you can use it to do it with your own applications. see this: https://gitlab.kitware.com/paraview/paraview-superbuild

  1. The ugly way: Windows drop

On windows, with uniform systems, you can just drop your exec in a paraview binary distribution and it just works, but Iā€™d not recommend it.

1 Like