2017-05-24 20:16:27 -04:00
|
|
|
jsconf = configuration_data()
|
|
|
|
jsconf.set('PACKAGE_NAME', meson.project_name())
|
|
|
|
jsconf.set('PACKAGE_VERSION', meson.project_version())
|
|
|
|
jsconf.set('GETTEXT_PACKAGE', meson.project_name())
|
|
|
|
jsconf.set('LIBMUTTER_API_VERSION', mutter_api_version)
|
|
|
|
jsconf.set10('HAVE_BLUETOOTH', bt_dep.found())
|
|
|
|
jsconf.set10('HAVE_NETWORKMANAGER', have_networkmanager)
|
|
|
|
jsconf.set('datadir', datadir)
|
|
|
|
jsconf.set('libexecdir', libexecdir)
|
2018-01-21 15:04:37 -05:00
|
|
|
jsconf.set('vpndir', vpndir)
|
2017-05-24 20:16:27 -04:00
|
|
|
|
|
|
|
config_js = configure_file(
|
|
|
|
input: 'config.js.in',
|
|
|
|
output: 'config.js',
|
|
|
|
configuration: jsconf
|
|
|
|
)
|