Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
c3b0fe09
Commit
c3b0fe09
authored
10 years ago
by
Gigg, Martyn Anthony
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Mantid/MantidPlot/docs/python/CMakeLists.txt
+9
-15
9 additions, 15 deletions
Code/Mantid/MantidPlot/docs/python/CMakeLists.txt
Code/Mantid/docs/CMakeLists.txt
+8
-4
8 additions, 4 deletions
Code/Mantid/docs/CMakeLists.txt
with
17 additions
and
19 deletions
Code/Mantid/MantidPlot/docs/python/CMakeLists.txt
+
9
−
15
View file @
c3b0fe09
...
@@ -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
()
This diff is collapsed.
Click to expand it.
Code/Mantid/docs/CMakeLists.txt
+
8
−
4
View file @
c3b0fe09
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment