pidgin/plugins/transparency/meson.build

Sat, 29 Oct 2022 00:53:33 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Sat, 29 Oct 2022 00:53:33 -0500
changeset 41858
38e61d11b89f
parent 41742
40130f43df93
child 42372
ba3a49903905
permissions
-rw-r--r--

Migrate the static fields in PidginAccountEditor to AdwEntryRow

I also moved the proxy port to an entry row instead of using a spin button. In
Pidgin 2 we just used an entry and used atoi() on it, so that's what I'm doing
here.

Testing Done:
Modified the alias and proxy settings and made sure they were saved properly.

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

transparency = 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