Skip to content
Snippets Groups Projects
Commit c3b0fe09 authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony
Browse files

Exclude the sphinx docs by default from VS build

Refs #9559
parent 538904dc
No related branches found
No related tags found
No related merge requests found
...@@ -60,26 +60,20 @@ if ( SPHINX_FOUND ) ...@@ -60,26 +60,20 @@ if ( SPHINX_FOUND )
DEPENDS ${SPHINX_CONF_FILES} DEPENDS ${SPHINX_CONF_FILES}
COMMENT "Generating Python API for sphinx" COMMENT "Generating Python API for sphinx"
) )
set_property ( TARGET ${TARGET_NAME}-generateapi PROPERTY FOLDER "Documentation/python" ) # Group within VS and exclude from whole build
set_target_properties ( ${TARGET_NAME}-generateapi PROPERTIES FOLDER "Documentation/python"
EXCLUDE_FROM_DEFAULT_BUILD 1
EXCLUDE_FROM_ALL 1)
# HTML target # HTML target
set ( SPHINX_HTML_BUILD ${SPHINX_BUILD}/html ) set ( SPHINX_HTML_BUILD ${SPHINX_BUILD}/html )
add_custom_target ( ${TARGET_NAME}-html add_custom_target ( ${TARGET_NAME}-html
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/MantidPlot -xq runsphinx_html.py COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/MantidPlot -xq runsphinx_html.py
COMMENT "Build Sphinx html documentation" COMMENT "Build Sphinx html documentation"
) )
set_property ( TARGET ${TARGET_NAME}-html PROPERTY FOLDER "Documentation/python" ) # Group within VS and exclude from whole build
add_dependencies( ${TARGET_NAME}-html ${TARGET_NAME}-generateapi ) set_target_properties ( ${TARGET_NAME}-html PROPERTIES FOLDER "Documentation/python"
EXCLUDE_FROM_DEFAULT_BUILD 1
# Latex target EXCLUDE_FROM_ALL 1)
set ( SPHINX_LATEX_BUILD ${SPHINX_BUILD}/latex )
add_custom_target ( ${TARGET_NAME}-latex
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/MantidPlot -xq runsphinx_latex.py
COMMENT "Build Python Sphinx latex documentation"
)
set_property ( TARGET ${TARGET_NAME}-latex PROPERTY FOLDER "Documentation/python" )
add_dependencies( ${TARGET_NAME}-latex ${TARGET_NAME}-generateapi )
endif () endif ()
...@@ -21,8 +21,10 @@ if ( SPHINX_FOUND ) ...@@ -21,8 +21,10 @@ if ( SPHINX_FOUND )
COMMAND ${DOCS_RUNNER_EXE} -xq runsphinx_html.py COMMAND ${DOCS_RUNNER_EXE} -xq runsphinx_html.py
COMMENT "Building html documentation" COMMENT "Building html documentation"
) )
# Group within VS # Group within VS and exclude from whole build
set_property ( TARGET ${TARGET_PREFIX}-html PROPERTY FOLDER "Documentation" ) set_target_properties ( ${TARGET_PREFIX}-html PROPERTIES FOLDER "Documentation"
EXCLUDE_FROM_DEFAULT_BUILD 1
EXCLUDE_FROM_ALL 1)
# doctest target # doctest target
set ( BUILDER doctest ) set ( BUILDER doctest )
...@@ -31,8 +33,10 @@ if ( SPHINX_FOUND ) ...@@ -31,8 +33,10 @@ if ( SPHINX_FOUND )
COMMAND ${DOCS_RUNNER_EXE} -xq runsphinx_doctest.py COMMAND ${DOCS_RUNNER_EXE} -xq runsphinx_doctest.py
COMMENT "Running documentation tests" COMMENT "Running documentation tests"
) )
set_property ( TARGET ${TARGET_PREFIX}-test PROPERTY FOLDER "Documentation" ) # Group within VS and exclude from whole build
set_target_properties ( ${TARGET_PREFIX}-test PROPERTIES FOLDER "Documentation"
EXCLUDE_FROM_DEFAULT_BUILD 1
EXCLUDE_FROM_ALL 1)
endif () endif ()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment