aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mesonmain.py
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2018-08-14 16:05:26 -0300
committerThibault Saunier <tsaunier@igalia.com>2018-08-28 18:18:40 -0300
commit378bd4df0e3ac6c38588eea2de590cbe0fe74af2 (patch)
treed2a9431dfe02cf3b2ed977cc95a4802fcffbeaba /mesonbuild/mesonmain.py
parent221ac05c6924ebd03f11632fd6abd4f5f9acc493 (diff)
downloadmeson-378bd4df0e3ac6c38588eea2de590cbe0fe74af2.zip
meson-378bd4df0e3ac6c38588eea2de590cbe0fe74af2.tar.gz
meson-378bd4df0e3ac6c38588eea2de590cbe0fe74af2.tar.bz2
modules: Add an 'hotdoc' module
hotdoc: http://github.com/hotdoc/hotdoc/
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r--mesonbuild/mesonmain.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py
index 68a2ddb..5000965 100644
--- a/mesonbuild/mesonmain.py
+++ b/mesonbuild/mesonmain.py
@@ -200,6 +200,9 @@ def run_script_command(args):
elif cmdname == 'msgfmthelper':
import mesonbuild.scripts.msgfmthelper as abc
cmdfunc = abc.run
+ elif cmdname == 'hotdoc':
+ import mesonbuild.scripts.hotdochelper as abc
+ cmdfunc = abc.run
elif cmdname == 'regencheck':
import mesonbuild.scripts.regen_checker as abc
cmdfunc = abc.run