protocols/ircv3/meson.build

Fri, 22 Nov 2024 03:37:06 -0600

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Fri, 22 Nov 2024 03:37:06 -0600
changeset 43082
0248f784950d
parent 43024
8a7be63f83e4
child 43097
757575456cc2
permissions
-rw-r--r--

Make protocol resource paths more consistent

This keeps them in the same tree in the GTK inspector.

Also, make some resource loading more error-proof in the demo protocol.

Testing Done:
Opened GTK inspector and confirmed everything was in a common resource path.

Opened Account manager, and confirmed the prpl icons were there.
Opened a Request Fields dialog from the Demo protocol and confirmed the test image was there.
Confirmed that Demo contacts were there.

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

IRCV3_SOURCES = [
	'purpleircv3connection.c',
	'purpleircv3core.c',
	'purpleircv3ctcphandlers.c',
	'purpleircv3messagehandlers.c',
	'purpleircv3protocol.c',
	'purpleircv3protocolconversation.c',
]

IRCV3_HEADERS = [
	'purpleircv3connection.h',
	'purpleircv3core.h',
	'purpleircv3ctcphandlers.h',
	'purpleircv3messagehandlers.h',
	'purpleircv3protocol.h',
	'purpleircv3protocolconversation.h',
]

if not DYNAMIC_IRCV3
	subdir_done()
endif

ibis_dep = dependency('ibis', version : '>= 0.10.1')

ircv3_filebase = f'purple-@purple_api_major_version@-ircv3'
ircv3_filebase = f'purple-@purple_api_major_version@-ircv3'

ircv3_includes = include_directories('.')
ircv3_include_base = purple_include_base / 'protocols/ircv3'


ircv3_resources = gnome.compile_resources('ircv3resource',
	'resources/ircv3.gresource.xml',
	source_dir : 'resources',
	c_name : 'purple_ircv3')
IRCV3_SOURCES += ircv3_resources

shared_library('ircv3', IRCV3_SOURCES + IRCV3_HEADERS,
	c_args : ['-DPURPLE_IRCV3_COMPILATION', '-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-IRCv3"'],
	gnu_symbol_visibility : 'hidden',
	dependencies : [birb_dep, libpurple_dep, glib, gio, hasl, ibis_dep],
	install : true,
	install_dir : PURPLE_PLUGINDIR)

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

mercurial