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

build: Move loose scripts in meson subdir to tools

The build dir looks "prettier" without the meson subdir.
With prettier I mean: just the OSes subdirs.
This commit is contained in:
Bruno Lopes
2025-09-24 09:06:01 -03:00
parent 9337c55599
commit c13bf1af19
7 changed files with 5 additions and 5 deletions

View File

@@ -252,7 +252,7 @@ foreach plugin : common_plugins_list
plugin_custom_targets += custom_target('test-' + plugin_name,
input: [ plugin_exe ],
output: [ plugin_name + '.dummy' ],
command: [ python, meson.project_source_root() / 'build/meson/cp-plug-in-subfolder.py',
command: [ python, meson.project_source_root() / 'tools/cp-plug-in-subfolder.py',
plugin_exe, meson.current_build_dir() / 'test-plug-ins' / plugin_name,
'@OUTPUT@' ],
build_by_default: true)

View File

@@ -33,7 +33,7 @@ foreach plugin : python_plugins
# from the build directory without installing it.
# To be run even if we don't install Python plug-ins so that we can
# still run them for in-build scripts.
run_command(python, meson.project_source_root() / 'build/meson/cp-plug-in-subfolder.py',
run_command(python, meson.project_source_root() / 'tools/cp-plug-in-subfolder.py',
meson.current_source_dir() / src, meson.current_build_dir() / name, check: true)
endforeach
endforeach