aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-07-17 19:03:40 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2019-07-17 23:20:03 +0300
commitd9eac2544c65429e2981c55c07a3235454e3eae0 (patch)
treed1bf89d07370e5bf02983c6d1131ebfcfda35d76 /mesonbuild/dependencies
parent845f0e1133e27add934bef2863bd00858333f09b (diff)
downloadmeson-d9eac2544c65429e2981c55c07a3235454e3eae0.zip
meson-d9eac2544c65429e2981c55c07a3235454e3eae0.tar.gz
meson-d9eac2544c65429e2981c55c07a3235454e3eae0.tar.bz2
cmake: additional debug logging
Diffstat (limited to 'mesonbuild/dependencies')
-rw-r--r--mesonbuild/dependencies/base.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py
index 76425f3..4781fcd 100644
--- a/mesonbuild/dependencies/base.py
+++ b/mesonbuild/dependencies/base.py
@@ -1299,6 +1299,9 @@ class CMakeDependency(ExternalDependency):
self.compile_args = list(map(lambda x: '-I{}'.format(x), incDirs)) + defs
self.link_args = libs
mlog.debug('using old-style CMake variables for dependency {}'.format(name))
+ mlog.debug('Include Dirs: {}'.format(incDirs))
+ mlog.debug('Compiler Definitions: {}'.format(defs))
+ mlog.debug('Libraries: {}'.format(libs))
return
# Even the old-style approach failed. Nothing else we can do here