protocols/xmpp/meson.build

Sun, 03 Nov 2024 00:05:44 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Sun, 03 Nov 2024 00:05:44 -0500
changeset 43045
308e8d0ce68c
parent 42546
a8a644e3e561
child 43189
3f33bf2e4efc
permissions
-rw-r--r--

remove purple3-url-handler.desktop.in.in

The application that did the launching was removed long ago. Also this should
be implemented by the user interfaces and they might provide separate files to
groups schemas as well.

Testing Done:
Called in the turtles.

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

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