protocols/ircv3/meson.build

Wed, 22 Jan 2025 22:41:16 -0600

author
Gary Kramlich <grim@reaperworld.com>
date
Wed, 22 Jan 2025 22:41:16 -0600
changeset 43159
2bde48da761d
parent 43097
757575456cc2
child 43169
b73130ee49ed
permissions
-rw-r--r--

Make all of the subprojects use tarballs

Now that we've had a release we need to use tarballs for our subprojects to
ease the pressure on hgkeeper.

I also updated everything to the most recent releases as well.

Testing Done:
Removed the subproject directories and called in the turtles. Also built the flatpak.

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

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

IRCV3_HEADERS = [
	'purpleircv3commands.h',
	'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.11.0')

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