pidgin/plugins/transparency/meson.build

Mon, 30 Oct 2023 23:13:17 -0500

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Mon, 30 Oct 2023 23:13:17 -0500
changeset 42453
1c13bc243b7d
parent 42372
ba3a49903905
child 42468
3ea8d5befbe4
permissions
-rw-r--r--

Remove PidginPluginInfo

The only thing it provides is the "gtk-config-frame-cb" property, but no
plugins use that any more, as they are all using GSettings.

Testing Done:
Compiled.

Reviewed at https://reviews.imfreedom.org/r/2753/

library('transparency', 'transparency.c',
    c_args : ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="PidginPlugin-Transparency"'],
    dependencies : [libpurple_dep, libpidgin_dep, glib],
    name_prefix : '',
    install : true, install_dir : PIDGIN_PLUGINDIR)

settings_schemas = [
  'im.pidgin.Pidgin.plugin.Transparency.gschema.xml',
]

install_data(settings_schemas, install_dir: schemas_dir)
gnome.post_install(glib_compile_schemas: true)

# Compile the schemas in the current directory; this is only useful for testing
gnome.compile_schemas(depend_files: files(settings_schemas))

devenv.append('PIDGIN_PLUGIN_PATH', meson.current_build_dir())

mercurial