libpurple/protocols/silc/meson.build

Wed, 25 May 2022 23:52:45 -0500

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Wed, 25 May 2022 23:52:45 -0500
changeset 41408
5323c0b51ddc
parent 41107
1570d8844e9a
permissions
-rw-r--r--

Remove prpl-gtalk from XMPP console

It no longer exists, and complicates the code a bit.

SILC_SOURCES = [
	'buddy.c',
	'chat.c',
	'ft.c',
	'ft.h',
	'ops.c',
	'pk.c',
	'silc.c',
	'silcpurple.h',
	'util.c',
	'wb.c',
	'wb.h'
]

if DYNAMIC_SILC
	silc_resources = gnome.compile_resources('silcresource',
		'resources/silc.gresource.xml',
		source_dir : 'resources',
		c_name : 'silc')
	SILC_SOURCES += silc_resources

	silc_prpl = shared_library('silcpurple', SILC_SOURCES,
	    c_args : ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-SILC"'],
	    dependencies : [silc, libpurple_dep, glib],
	    install : true, install_dir : PURPLE_PLUGINDIR)

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

mercurial