How to set VTK_SMP_IMPLEMENTATION_TYPE=OpenMP when compile paraview with superbuild? thanks

I have checked the superbuild compile option, but have not found the option for VTK_SMP_IMPLEMENTATION_TYPE

It is not supported. Currently, the superbuild uses Sequential or TBB if TBB is enabled.

set(paraview_smp_backend "Sequential")
if (tbb_enabled)
  set(paraview_smp_backend "TBB")
endif ()

thanks