summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Engestrom2018-02-26 09:42:18 -0600
committerEric Engestrom2018-03-05 11:34:01 -0600
commit7a58c21f3ef3fd9f47d9f73cc9d725996ad691a0 (patch)
tree9d45a25456f9d99def9ca3c8592ef0b5a45f71cb
parenta1a13d2002666922dbc7530c6f16aad600c3c3f3 (diff)
downloadexternal-libdrm-7a58c21f3ef3fd9f47d9f73cc9d725996ad691a0.tar.gz
external-libdrm-7a58c21f3ef3fd9f47d9f73cc9d725996ad691a0.tar.xz
external-libdrm-7a58c21f3ef3fd9f47d9f73cc9d725996ad691a0.zip
meson: add configuration summary
The message block printed is the same as the one in configure.ac Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
-rw-r--r--meson.build17
1 files changed, 17 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 15a2b084..7bf26819 100644
--- a/meson.build
+++ b/meson.build
@@ -373,3 +373,20 @@ if with_man_pages
373endif 373endif
374subdir('data') 374subdir('data')
375subdir('tests') 375subdir('tests')
376
377message('')
378message('@0@ will be compiled with:'.format(meson.project_name()))
379message('')
380message(' libkms @0@'.format(with_libkms))
381message(' Intel API @0@'.format(with_intel))
382message(' vmwgfx API @0@'.format(with_vmwgfx))
383message(' Radeon API @0@'.format(with_radeon))
384message(' AMDGPU API @0@'.format(with_amdgpu))
385message(' Nouveau API @0@'.format(with_nouveau))
386message(' OMAP API @0@'.format(with_omap))
387message(' EXYNOS API @0@'.format(with_exynos))
388message(' Freedreno API @0@ (kgsl: @1@)'.format(with_freedreno, with_freedreno_kgsl))
389message(' Tegra API @0@'.format(with_tegra))
390message(' VC4 API @0@'.format(with_vc4))
391message(' Etnaviv API @0@'.format(with_etnaviv))
392message('')