1
0
Fork 0
gimp/gimp-data/images/meson.build
Daniel Baumann 554424e00a
Adding upstream version 3.0.4.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 00:14:50 +02:00

33 lines
1.5 KiB
Meson

## Splash Image and Welcome Dialog ##
splash = custom_target('gimp-splash.png',
input : [ 'export-splash.py' ],
output: [ 'gimp-splash.png', ],
depends: [ gimp_exe_depends ],
command: [ gimp_exe, '-nidfs',
files('gimp-splash.xcf.xz'),
'--batch-interpreter', 'python-fu-eval',
'-b', '-', '--quit'],
feed: true,
build_by_default: true,
env: gimp_run_env,
install_dir: gimpdatadir / 'images',
install: true)
## Windows Installer's Splash Image and Intro Banner ##
if get_option('windows-installer')
installsplash = custom_target('installsplash.bmp',
input : [ 'splash2installer.py' ],
output: [ 'stamp-installsplash.bmp', ],
depends: [ gimp_exe_depends ],
command: [ gimp_exe, '-nidfs',
files('gimp-splash.xcf.xz'),
'--batch-interpreter', 'python-fu-eval',
'-b', '-', '--quit'],
feed: true,
build_by_default: true,
env: gimp_run_env)
endif
subdir('logo')