drm: Branch 'master'
[email protected] (Eric Engestr??m) Mon, 5 Mar 2018 17:35:00 +0000 (UTC)
| Newsgroups | gmane.comp.video.dri.patches |
|---|---|
| Message-ID | <[email protected]> |
meson.build | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) New commits: commit 7a58c21f3ef3fd9f47d9f73cc9d725996ad691a0 Author: Eric Engestrom <[email protected]> Date: Mon Feb 26 15:42:18 2018 +0000 meson: add configuration summary The message block printed is the same as the one in configure.ac Signed-off-by: Eric Engestrom <[email protected]> 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 endif subdir('data') subdir('tests') + +message('') +message('@0@ will be compiled with:'.format(meson.project_name())) +message('') +message(' libkms @0@'.format(with_libkms)) +message(' Intel API @0@'.format(with_intel)) +message(' vmwgfx API @0@'.format(with_vmwgfx)) +message(' Radeon API @0@'.format(with_radeon)) +message(' AMDGPU API @0@'.format(with_amdgpu)) +message(' Nouveau API @0@'.format(with_nouveau)) +message(' OMAP API @0@'.format(with_omap)) +message(' EXYNOS API @0@'.format(with_exynos)) +message(' Freedreno API @0@ (kgsl: @1@)'.format(with_freedreno, with_freedreno_kgsl)) +message(' Tegra API @0@'.format(with_tegra)) +message(' VC4 API @0@'.format(with_vc4)) +message(' Etnaviv API @0@'.format(with_etnaviv)) +message('') ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot --