#
# !! Please read the generic detection procedure in SalomeMacros.cmake !!
#
-# The caller of this macro might set SPHINX_PYTHONPATH to provide a PYTHONPATH with
-# which the sphinx command should be ran.
+# The caller of this macro might set SPHINX_PYTHONPATH to provide a path to be added in front
+# of the PYTHONPATH with which the sphinx command should be ran.
+#
# Note the environment is also overriden in
# doc/docutils/CMakeLists.txt
# with the creation of a dedicated launcher script.
SET(DOCUTILS_ROOT_DIR "$ENV{DOCUTILS_ROOT_DIR}" CACHE PATH "Path to the Setuptools installation")
# Ensure the command is run with the given PYTHONPATH
-#IF(WIN32 AND NOT CYGWIN)
-# MESSAGE(WARNING "Sphinx windows command needs a proper PYTHONPATH to run.")
-#ELSE()
-# SET(SPHINX_EXECUTABLE /usr/bin/env PYTHONPATH="${SPHINX_PYTHONPATH}:$ENV{PYTHONPATH}" ${SPHINX_EXECUTABLE})
-#ENDIF()
+IF(WIN32 AND NOT CYGWIN)
+ MESSAGE(WARNING "Sphinx windows command not re-tested.")
+ SET(SPHINX_EXECUTABLE set PYTHONPATH="${SPHINX_PYTHONPATH};%PYTHONPATH%" && ${SPHINX_EXECUTABLE})
+ELSE()
+ SET(SPHINX_EXECUTABLE /usr/bin/env PYTHONPATH="${SPHINX_PYTHONPATH}:$$PYTHONPATH" ${SPHINX_EXECUTABLE})
+ENDIF()
MARK_AS_ADVANCED(SPHINX_EXECUTABLE)