2017-11-01 21:27:13 +08:00
|
|
|
subdir('dynamics')
|
|
|
|
subdir('environ')
|
|
|
|
subdir('gradients')
|
|
|
|
subdir('interpreters')
|
|
|
|
subdir('palettes')
|
|
|
|
subdir('tags')
|
|
|
|
subdir('tips')
|
|
|
|
subdir('tool-presets')
|
|
|
|
|
|
|
|
|
|
|
|
meson.add_install_script('sh', '-c',
|
|
|
|
'mkdir -p $MESON_INSTALL_DESTDIR_PREFIX/@0@'.format(gimpdatadir / 'fonts')
|
|
|
|
)
|
2020-02-14 07:58:22 +08:00
|
|
|
|
2022-06-06 23:14:44 +08:00
|
|
|
release_conf = configuration_data()
|
|
|
|
release_conf.set('REVISION', get_option('revision'))
|
|
|
|
|
|
|
|
gimp_release = 'gimp-release'
|
|
|
|
configure_file(
|
|
|
|
input : gimp_release + '.in',
|
|
|
|
output: gimp_release,
|
|
|
|
configuration: release_conf,
|
2020-02-14 07:58:22 +08:00
|
|
|
install: true,
|
|
|
|
install_dir: gimpdatadir,
|
|
|
|
)
|