aboutsummaryrefslogtreecommitdiff
path: root/interpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-10-16 21:23:29 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-10-16 21:23:29 +0300
commit0da4537b6962d1cd51a05393f4b0cf250bea1ac4 (patch)
treeae21ef0467916d97a2990ee84b4f3b5880cfaece /interpreter.py
parentd5ce0c7cd967e2baba70986b763b1bf853a3806f (diff)
downloadmeson-0da4537b6962d1cd51a05393f4b0cf250bea1ac4.zip
meson-0da4537b6962d1cd51a05393f4b0cf250bea1ac4.tar.gz
meson-0da4537b6962d1cd51a05393f4b0cf250bea1ac4.tar.bz2
Preserve option function for option files.
Diffstat (limited to 'interpreter.py')
-rw-r--r--interpreter.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/interpreter.py b/interpreter.py
index bd5b815..4dd51a7 100644
--- a/interpreter.py
+++ b/interpreter.py
@@ -579,6 +579,7 @@ class Interpreter():
'configuration_data' : self.func_configuration_data,
'run_command' : self.func_run_command,
'gettext' : self.func_gettext,
+ 'option' : self.func_option,
}
def get_build_def_files(self):
@@ -693,6 +694,9 @@ class Interpreter():
raise InterpreterException('More than one gettext definitions currently not supported.')
self.build.pot.append((packagename, languages, self.subdir))
+ def func_option(self, nodes, args, kwargs):
+ raise InterpreterException('Tried to call option() in build description file. All options must be in the option file.')
+
def func_configuration_data(self, node, args, kwargs):
if len(args) != 0:
raise InterpreterException('configuration_data takes no arguments')