From: Christoph Reiter Date: Sun, 20 May 2018 11:35:52 +0000 (+0200) Subject: meson: install the man pages for the command line tools X-Git-Tag: 1.19.3~511^2~1661 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b163f373c393f40a1128eced538e1e947ef51b87;p=platform%2Fupstream%2Fgstreamer.git meson: install the man pages for the command line tools https://bugzilla.gnome.org/show_bug.cgi?id=796274 --- diff --git a/tools/meson.build b/tools/meson.build index 98757eb..57595fb 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -7,6 +7,7 @@ executable('gst-device-monitor-@0@'.format(api_version), include_directories: [configinc], dependencies : tool_deps, ) +install_man('gst-device-monitor-@0@.1'.format(api_version)) executable('gst-discoverer-@0@'.format(api_version), 'gst-discoverer.c', @@ -15,6 +16,7 @@ executable('gst-discoverer-@0@'.format(api_version), include_directories: [configinc], dependencies : tool_deps, ) +install_man('gst-discoverer-@0@.1'.format(api_version)) executable('gst-play-@0@'.format(api_version), 'gst-play.c', 'gst-play-kb.c', @@ -23,3 +25,4 @@ executable('gst-play-@0@'.format(api_version), include_directories: [configinc], dependencies : tool_deps + [libm], ) +install_man('gst-play-@0@.1'.format(api_version))