Compile Paraview without ninja

Dear all,

I need to communicate to my IT service how to compile Paraview without using the compilation command “ninja” because they don’t have it in our cluster. In my machine, I can install the paraview super build from 0 using the following commands:

git clone --recursive https://gitlab.kitware.com/paraview/paraview-
superbuild.git

cmake \
-GNinja \
-DENABLE_osmesa=ON \
-DPARAVIEW_ENABLE_VISITBRIDGE=ON \
-DENABLE_python3=ON \
-DENABLE_matplotlib=ON \
-DENABLE_mpi=ON \
-DENABLE_paraview=ON \
-DCMAKE_BUILD_TYPE=Release \
./paraview-superbuild

# Compilation command
ninja

Which would be the equivalent way to compile it using make -j XX cpus?

Kind regards

Hi @Captain_Convergence

Just remove -GNinja

Best,