diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-09-10 12:11:46 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-10 21:02:18 +0300 |
commit | 39d87269b31e64cfdfb32706236ca84329dbfca4 (patch) | |
tree | fa9addc0e40ce79a3460ae21afe81d0bac5339c6 /mesonbuild/dependencies/ui.py | |
parent | 593de3747456b1c77d5227b463b0c45e964f222c (diff) | |
download | meson-39d87269b31e64cfdfb32706236ca84329dbfca4.zip meson-39d87269b31e64cfdfb32706236ca84329dbfca4.tar.gz meson-39d87269b31e64cfdfb32706236ca84329dbfca4.tar.bz2 |
Add missing reporting of some methods tried to find the dependency
Make us report 'system' and 'framework' when we tried those methods to
locate the dependency.
Diffstat (limited to 'mesonbuild/dependencies/ui.py')
-rw-r--r-- | mesonbuild/dependencies/ui.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py index ae470fb..289d1b4 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -72,6 +72,8 @@ class GLDependency(ExternalDependency): else: return [DependencyMethods.PKGCONFIG] + def log_tried(self): + return 'system' class GnuStepDependency(ConfigToolDependency): @@ -612,3 +614,6 @@ class VulkanDependency(ExternalDependency): @staticmethod def get_methods(): return [DependencyMethods.PKGCONFIG, DependencyMethods.SYSTEM] + + def log_tried(self): + return 'system' |