1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

Issue #8546: Meson options fixes

- Implement `enable-console-bin` meson option
- Fix wrong `enable-default-bin` behavior in docs
- Implement `enable-default-bin` meson option
This commit is contained in:
Hanabishi
2022-08-29 13:41:08 +00:00
committed by Jehan
parent b2729643f8
commit 879f7b48de
7 changed files with 90 additions and 46 deletions

View File

@@ -14,5 +14,12 @@ gimp_debug_tool = executable('gimp-debug-tool-' + gimp_app_version,
libgimpbase,
],
install: true,
install_dir: get_option('libexecdir')
install_dir: exec_dir
)
if enable_default_bin and meson.version().version_compare('>=0.61.0')
install_symlink('gimp-debug-tool' + exec_ext,
pointing_to: 'gimp-debug-tool-' + gimp_app_version + exec_ext,
install_dir: exec_dir
)
endif