find_program(NBCONVERT "jupyter-nbconvert")

IF("${NBCONVERT}" STREQUAL "NBCONVERT-NOTFOUND")
  message (WARNING "Did not find nbconvert; no ipynb will be able to be converted to html")
ELSE()
  add_custom_target("build-gs")
  add_custom_target("upload-gs")
  add_subdirectory(cora)
  add_subdirectory(dyn)
  add_subdirectory(py)
ENDIF()
