diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2017-09-11 19:28:51 +0300 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2017-09-15 15:57:51 +0300 |
commit | 1b52044eb74b74be15fb7d643c5fc76cfe200c21 (patch) | |
tree | e4ad62244e9c1abd700e8fc418673f9b28e4bb77 | |
parent | 2d25aa8fcbc5bbbf5b658515e9fb41647382c5b3 (diff) |
meson: Rename and install intel-gpu-overlay
Autotools called the binary 'intel-gpu-overlay', let's have meson use
that name as well. Also install it.
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
-rw-r--r-- | overlay/meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/overlay/meson.build b/overlay/meson.build index a4b778ca..a92ef895 100644 --- a/overlay/meson.build +++ b/overlay/meson.build @@ -52,8 +52,9 @@ gpu_overlay_src += both_x11_src gpu_overlay_src += 'kms/kms-overlay.c' if xrandr.found() and cairo.found() - executable('intel_gpu_overlay', gpu_overlay_src, + executable('intel-gpu-overlay', gpu_overlay_src, include_directories : inc, c_args : gpu_overlay_cflags, - dependencies : gpu_overlay_deps) + dependencies : gpu_overlay_deps, + install : true) endif |