diff options
| author | Charles Brunet <charles.brunet@optelgroup.com> | 2023-08-10 14:35:18 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-08-18 00:36:49 -0400 |
| commit | 7cbe37ebd94e9df984328fd9722cc2fc9f61651b (patch) | |
| tree | beb5045353c7fc7da5fd7db01e95db3af2073f1c /mesonbuild/modules/external_project.py | |
| parent | 88747b4f8d4bb35c82c8855ecbd6a29ea419b6fd (diff) | |
| download | meson-7cbe37ebd94e9df984328fd9722cc2fc9f61651b.tar.gz | |
Add more descriptive description to CustomTarget
Allow modules using CustomTarget to modify the command description used by ninja backend. This result in more precise logs when building a project.
Diffstat (limited to 'mesonbuild/modules/external_project.py')
| -rw-r--r-- | mesonbuild/modules/external_project.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/modules/external_project.py b/mesonbuild/modules/external_project.py index f7a72bced..e7b7c43f6 100644 --- a/mesonbuild/modules/external_project.py +++ b/mesonbuild/modules/external_project.py @@ -247,6 +247,7 @@ class ExternalProject(NewExtensionModule): depfile=f'{self.name}.d', console=True, extra_depends=extra_depends, + description='Generating external project {}', ) idir = build.InstallDir(self.subdir.as_posix(), |
