app-tools: meson build was not installing gimp-debug-tool.

This commit is contained in:
Jehan 2019-12-30 00:21:33 +01:00
parent 4b07c62cbc
commit f51886b853
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
gimp_debug_tool = executable('gimp-debug-tool',
gimp_debug_tool = executable('gimp-debug-tool-' + gimp_app_version,
'gimp-debug-tool.c',
include_directories: rootInclude,
dependencies: [
@ -12,4 +12,6 @@ gimp_debug_tool = executable('gimp-debug-tool',
libapp,
libappwidgets,
],
install: true,
install_dir: get_option('libexecdir')
)