/*========================================================================= Program: ParaView Module: pvpython.cxx Copyright (c) Kitware, Inc. All rights reserved. See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #include "pvpython.h" // Include this first. #include "vtkProcessModule.h" #include "vtkPVConfig.h" // Required to get build options for paraview #ifndef BUILD_SHARED_LIBS #include "pvStaticPluginsInit.h" #endif #ifdef HAVE_NUMPY_STATIC #include "pvnumpy-static.h" #endif int main(int argc, char* argv[]) { #ifdef HAVE_NUMPY_STATIC paraview_numpy_static_setup(); #endif #ifndef BUILD_SHARED_LIBS paraview_static_plugins_init(); #endif return ParaViewPython::Run(vtkProcessModule::PROCESS_CLIENT, argc, argv); }