mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 01:13:24 +00:00
20 lines
355 B
Meson
20 lines
355 B
Meson
etcconf = configuration_data()
|
|
etcconf.set('mypaint_brushes_dir', libmypaint_brushes_dir)
|
|
|
|
|
|
install_data(
|
|
[
|
|
'controllerrc',
|
|
configure_file(
|
|
input : 'gimprc.in',
|
|
output: 'gimprc',
|
|
configuration: etcconf,
|
|
),
|
|
'gimp.css',
|
|
'menurc',
|
|
'sessionrc',
|
|
'templaterc',
|
|
'unitrc',
|
|
],
|
|
install_dir: gimpsysconfdir,
|
|
)
|