protocols/xmpp/meson.build

Thu, 11 Apr 2024 21:32:59 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Thu, 11 Apr 2024 21:32:59 -0500
changeset 42692
12506cd6fa96
parent 42546
a8a644e3e561
child 43189
3f33bf2e4efc
permissions
-rw-r--r--

Remove PurpleConnectionUiOps as they are no longer used

Testing Done:
Checked in with the turtles.

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

XMPP_SOURCES = [
	'purplexmppconnection.c',
	'purplexmppcore.c',
	'purplexmppprotocol.c',
]

XMPP_HEADERS = [
	'purplexmppconnection.h',
	'purplexmppconstants.h',
	'purplexmppcore.h',
	'purplexmppprotocol.h',
]

if not DYNAMIC_XMPP
	subdir_done()
endif

xmpp_resources = gnome.compile_resources('xmppresource',
	'resources/xmpp.gresource.xml',
	source_dir : 'resources',
	c_name : 'purple_xmpp')
XMPP_SOURCES += xmpp_resources

xmpp_prpl = library('xmpp',
	XMPP_SOURCES + XMPP_HEADERS,
	c_args : ['-DPURPLE_XMPP_COMPILATION', '-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-XMPP"'],
	gnu_symbol_visibility : 'hidden',
	dependencies : [libpurple_dep, glib, gio, hasl, xeme],
	install : true,
	install_dir : PURPLE_PLUGINDIR)

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

mercurial