Utilities/Sphinx: Fix html_favicon configuration
The value must be either a full path or relative to the configuration directory, not relative to the 'static' directory. Use a full path. This avoids a warning: WARNING: favicon file 'cmake-favicon.ico' does not exist It worked before because all 'static' directory content is copied to the '_static' directory of html output anyway.
This commit is contained in:
parent
3942cf68b2
commit
ca83c39ce0
|
@ -60,7 +60,7 @@ html_style = 'cmake.css'
|
|||
html_theme = 'default'
|
||||
html_title = 'CMake %s Documentation' % release
|
||||
html_short_title = '%s Documentation' % release
|
||||
html_favicon = 'cmake-favicon.ico'
|
||||
html_favicon = '@conf_path@/static/cmake-favicon.ico'
|
||||
# Not supported yet by sphinx:
|
||||
# https://bitbucket.org/birkenfeld/sphinx/issue/1448/make-qthelp-more-configurable
|
||||
# qthelp_namespace = "org.cmake"
|
||||
|
|
Loading…
Reference in New Issue