mirror of https://github.com/GNOME/gimp.git
22 lines
402 B
Meson
22 lines
402 B
Meson
etcconf = configuration_data()
|
|
etcconf.set('GIMP_APP_VERSION', gimp_app_version)
|
|
etcconf.set('mypaint_brushes_dir', mypaint_brushes_dir)
|
|
|
|
|
|
install_data(
|
|
[
|
|
'controllerrc',
|
|
configure_file(
|
|
input : 'gimprc.in',
|
|
output: 'gimprc',
|
|
configuration: etcconf,
|
|
),
|
|
'gimp.css',
|
|
'sessionrc',
|
|
'templaterc',
|
|
'toolrc',
|
|
'unitrc',
|
|
],
|
|
install_dir: gimpsysconfdir,
|
|
)
|