c67614b522
We currently include a fake config.js file to satisfy the indirect import from ExtensionUtils. However we're about to need to pass build-time information into the program ourselves, so generate a proper file. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2841>
8 lines
150 B
Meson
8 lines
150 B
Meson
config_js = configure_file(
|
|
input: 'config.js.in',
|
|
output: '@BASENAME@',
|
|
configuration: {
|
|
'GETTEXT_VERSION': meson.project_version(),
|
|
}
|
|
)
|