libpurple/protocols/novell/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.

NOVELL_SOURCES = [
	'nmfield.h',
	'nmfield.c',
	'nmconn.h',
	'nmconn.c',
	'nmconference.h',
	'nmconference.c',
	'nmcontact.h',
	'nmcontact.c',
	'nmevent.h',
	'nmevent.c',
	'nmmessage.h',
	'nmmessage.c',
	'nmrequest.h',
	'nmrequest.c',
	'nmrtf.h',
	'nmrtf.c',
	'nmuser.h',
	'nmuser.c',
	'nmuserrecord.h',
	'nmuserrecord.c',
	'novell.h',
	'novell.c'
]

if DYNAMIC_NOVELL
	novell_resources = gnome.compile_resources('novellresource',
		'resources/novell.gresource.xml',
		source_dir : 'resources',
		c_name : 'novell')
	NOVELL_SOURCES += novell_resources

	novell_prpl = shared_library('novell', NOVELL_SOURCES,
	    c_args : ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-Novell"'],
	    dependencies : [libpurple_dep, glib, ws2_32],
	    install : true, install_dir : PURPLE_PLUGINDIR)

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

mercurial