mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
24 lines
666 B
Meson
24 lines
666 B
Meson
![]() |
## This file shouldn't even exist, but Meson unfortunately do
|
||
|
## not support C++ style comments. See: https://github.com/mesonbuild/meson/issues/14260
|
||
|
|
||
|
installer_conf = configuration_data()
|
||
|
installer_conf.set('GIMP_APP_VERSION', gimp_app_version)
|
||
|
installer_conf.set('GIMP_VERSION', gimp_version)
|
||
|
installer_conf.set('GIMP_PKGCONFIG_VERSION', gimp_api_version)
|
||
|
|
||
|
if gimp_unstable != false
|
||
|
installer_conf.set('GIMP_UNSTABLE', gimp_unstable)
|
||
|
endif
|
||
|
if gimp_rc_version != false
|
||
|
installer_conf.set('GIMP_RC_VERSION', gimp_rc_version)
|
||
|
endif
|
||
|
|
||
|
configure_file(
|
||
|
input : 'config_clean.h.in',
|
||
|
output: 'config_clean.h',
|
||
|
configuration: installer_conf
|
||
|
)
|
||
|
|
||
|
|
||
|
subdir('lang')
|