mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
21 lines
355 B
Meson
21 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,
|
||
|
)
|