project(PVQtJupyterPlugin)

set(interfaces)
set(sources
  pqJupyterCollaborationManager.h
  pqJupyterCollaborationManager.cxx)

paraview_plugin_add_auto_start(
  CLASS_NAME pqJupyterCollaborationManager
  STARTUP onStartup
  SHUTDOWN onShutdown
  INTERFACES autostart_interface
  SOURCES autostart_sources)
list(APPEND interfaces
  ${autostart_interface})
list(APPEND sources
  ${autostart_sources})

paraview_add_plugin(PVQtJupyterPlugin
  VERSION "1.0"
  UI_INTERFACES ${interfaces}
  SOURCES ${sources})
