summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-01-06 11:29:23 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2019-01-06 11:29:23 +0100
commit4e1ada2070a2626c82bd510f5165e5557c7d0608 (patch)
tree02d5300426d71d0c4237bea2431c138cde086701 /tools
parent6a11cde78591acc37fe9162bcaf26cde10413436 (diff)
downloadgobject-introspection-4e1ada2070a2626c82bd510f5165e5557c7d0608.tar.gz
meson: warn that not all tests will be run if building without cairo/doctool
Diffstat (limited to 'tools')
-rw-r--r--tools/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/meson.build b/tools/meson.build
index 6d38361a..48f981b7 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -5,7 +5,7 @@ tools = [
['g-ir-scanner', 'scannermain', 'scanner_main'],
['g-ir-annotation-tool', 'annotationmain', 'annotation_main'],
]
-if get_option('doctool')
+if with_doctool
tools += [['g-ir-doc-tool', 'docmain', 'doc_main']]
endif
@@ -39,7 +39,7 @@ foreach tool : tools
endforeach
girscanner = tool_output[0]
-if get_option('doctool')
+if with_doctool
girdoctool = tool_output[-1]
endif