Help: Do not install Sphinx html build info files
Exclude '.buildinfo' and 'objects.inv' from installation as part of the Sphinx-generated html documentation.
This commit is contained in:
parent
93ddb26311
commit
0c3cf36b3a
|
@ -111,5 +111,8 @@ endif()
|
|||
|
||||
if(SPHINX_HTML)
|
||||
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html
|
||||
DESTINATION ${CMAKE_DOC_DIR})
|
||||
DESTINATION ${CMAKE_DOC_DIR}
|
||||
PATTERN .buildinfo EXCLUDE
|
||||
PATTERN objects.inv EXCLUDE
|
||||
)
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue