aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2022-02-22 09:38:25 -0500
committerXavier Claessens <xclaesse@gmail.com>2022-02-28 09:03:27 -0500
commitc4b8c23eb1dac4b5a556cbd9e7b16bae52bb9244 (patch)
tree9b9c158a664c8dff7aa8c2365b7fab4036da6141
parentad75a2bfec7ca6cb13a3852afc618ee7c38d7baf (diff)
downloadmeson-c4b8c23eb1dac4b5a556cbd9e7b16bae52bb9244.zip
meson-c4b8c23eb1dac4b5a556cbd9e7b16bae52bb9244.tar.gz
meson-c4b8c23eb1dac4b5a556cbd9e7b16bae52bb9244.tar.bz2
Add API for modules that wants to define their devenv
-rw-r--r--mesonbuild/modules/__init__.py4
-rw-r--r--mesonbuild/modules/gnome.py4
-rw-r--r--mesonbuild/msetup.py9
3 files changed, 15 insertions, 2 deletions
diff --git a/mesonbuild/modules/__init__.py b/mesonbuild/modules/__init__.py
index a3c6972..71536c1 100644
--- a/mesonbuild/modules/__init__.py
+++ b/mesonbuild/modules/__init__.py
@@ -26,6 +26,7 @@ if T.TYPE_CHECKING:
from ..interpreterbase import TYPE_var, TYPE_kwargs
from ..programs import ExternalProgram
from ..wrap import WrapMode
+ from ..build import EnvironmentVariables
class ModuleState:
"""Object passed to all module methods.
@@ -148,6 +149,9 @@ class NewExtensionModule(ModuleObject):
def found() -> bool:
return True
+ def get_devenv(self) -> T.Optional['EnvironmentVariables']:
+ return None
+
# FIXME: Port all modules to stop using self.interpreter and use API on
# ModuleState instead. Modules should stop using this class and instead use
# ModuleObject base class.
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index 06a1f34..ec11e31 100644
--- a/mesonbuild/modules/gnome.py
+++ b/mesonbuild/modules/gnome.py
@@ -752,9 +752,11 @@ class GnomeModule(ExtensionModule):
def _devenv_prepend(self, varname: str, value: str) -> None:
if self.devenv is None:
self.devenv = build.EnvironmentVariables()
- self.interpreter.build.devenv.append(self.devenv)
self.devenv.prepend(varname, [value])
+ def get_devenv(self) -> T.Optional[build.EnvironmentVariables]:
+ return self.devenv
+
def _get_gir_dep(self, state: 'ModuleState') -> T.Tuple[Dependency, T.Union[build.Executable, 'ExternalProgram', 'OverrideProgram'],
T.Union[build.Executable, 'ExternalProgram', 'OverrideProgram']]:
if not self.gir_dep:
diff --git a/mesonbuild/msetup.py b/mesonbuild/msetup.py
index 7f2f7ed..6e03540 100644
--- a/mesonbuild/msetup.py
+++ b/mesonbuild/msetup.py
@@ -245,7 +245,7 @@ class MesonApp:
profile.runctx('intr.backend.generate()', globals(), locals(), filename=fname)
else:
intr.backend.generate()
- b.devenv.append(intr.backend.get_devenv())
+ self._finalize_devenv(b, intr)
build.save(b, dumpfile)
if env.first_invocation:
# Use path resolved by coredata because they could have been
@@ -288,6 +288,13 @@ class MesonApp:
os.unlink(cdf)
raise
+ def _finalize_devenv(self, b: build.Build, intr: interpreter.Interpreter) -> None:
+ b.devenv.append(intr.backend.get_devenv())
+ for mod in intr.modules.values():
+ devenv = mod.get_devenv()
+ if devenv:
+ b.devenv.append(devenv)
+
def run(options: argparse.Namespace) -> int:
coredata.parse_cmd_line_options(options)
app = MesonApp(options)