[SCons] Add documentation location to post-install message

This commit is contained in:
Bryan W. Weber 2018-09-30 20:15:43 -04:00
parent 72d2fc4f8c
commit 7e56bbaafe
No known key found for this signature in database
GPG key ID: 3A93E209C87E1FE7

View file

@ -1624,6 +1624,10 @@ def postInstallMessage(target, source, env):
samples {ct_sampledir!s}
data files {ct_datadir!s}""".format(**env_dict))
if env['sphinx_docs'] or env['doxygen_docs']:
install_message += indent(textwrap.dedent("""
HTML documentation {inst_docdir!s}""".format(**env_dict)), ' ')
if env['python_package'] == 'full':
env['python_example_loc'] = pjoin(env['python_module_loc'], 'cantera', 'examples')
install_message += indent(textwrap.dedent("""