2023-06-20 17:46:41 +00:00
|
|
|
project('xmpp-vala', 'c', 'cpp', 'vala')
|
2023-03-20 01:01:22 +00:00
|
|
|
|
|
|
|
fs = import('fs')
|
2023-06-21 22:04:39 +00:00
|
|
|
gnome = import('gnome')
|
|
|
|
i18n = import('i18n')
|
2023-03-20 01:01:22 +00:00
|
|
|
python = import('python')
|
|
|
|
|
2023-09-30 00:28:50 +00:00
|
|
|
# plugin_crypto is enabled if any of the crypto plugins is enabled, auto if
|
|
|
|
# none of them are explicitly enabled but at least one is set to auto, or
|
|
|
|
# disabled if all of them are disabled.
|
|
|
|
plugin_crypto = get_option('plugin-ice')
|
|
|
|
foreach plugin : ['plugin-ice', 'plugin-omemo', 'plugin-rtp']
|
|
|
|
if get_option(plugin).enabled() and not plugin_crypto.enabled()
|
|
|
|
plugin_crypto = get_option(plugin)
|
|
|
|
elif get_option(plugin).allowed() and not plugin_crypto.allowed()
|
|
|
|
plugin_crypto = get_option(plugin)
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
if get_option('plugin-ice').enabled() and not get_option('plugin-rtp').enabled()
|
|
|
|
dep_gnutls_required = get_option('plugin-ice')
|
|
|
|
elif get_option('plugin-ice').allowed() and not get_option('plugin-rtp').allowed()
|
|
|
|
dep_gnutls_required = get_option('plugin-ice')
|
|
|
|
else
|
|
|
|
dep_gnutls_required = get_option('plugin-rtp')
|
|
|
|
endif
|
|
|
|
|
2023-03-20 01:01:22 +00:00
|
|
|
dep_gdk_pixbuf = dependency('gdk-pixbuf-2.0')
|
|
|
|
dep_gee = dependency('gee-0.8')
|
|
|
|
dep_gio = dependency('gio-2.0')
|
|
|
|
dep_glib = dependency('glib-2.0')
|
2023-09-30 00:28:50 +00:00
|
|
|
dep_gnutls = dependency('gnutls', disabler: true, required: dep_gnutls_required)
|
2023-03-20 01:01:22 +00:00
|
|
|
dep_gmodule = dependency('gmodule-2.0')
|
2023-09-30 00:28:50 +00:00
|
|
|
dep_gpgme = dependency('gpgme', disabler: true, required: get_option('plugin-openpgp'))
|
|
|
|
dep_gstreamer = dependency('gstreamer-1.0', disabler: true, required: get_option('plugin-rtp'))
|
|
|
|
dep_gstreamer_app = dependency('gstreamer-app-1.0', disabler: true, required: get_option('plugin-rtp'))
|
|
|
|
dep_gstreamer_audio = dependency('gstreamer-audio-1.0', disabler: true, required: get_option('plugin-rtp'))
|
|
|
|
dep_gstreamer_rtp = dependency('gstreamer-rtp-1.0', disabler: true, required: get_option('plugin-rtp'))
|
|
|
|
dep_gstreamer_video = dependency('gstreamer-video-1.0', disabler: true, required: get_option('plugin-rtp'))
|
2023-03-20 01:01:22 +00:00
|
|
|
dep_gtk4 = dependency('gtk4')
|
|
|
|
dep_icu_uc = dependency('icu-uc')
|
|
|
|
dep_libadwaita = dependency('libadwaita-1')
|
2023-09-30 00:28:50 +00:00
|
|
|
dep_libcanberra = dependency('libcanberra', disabler: true, required: get_option('plugin-notification-sound'))
|
|
|
|
dep_libgcrypt = dependency('libgcrypt', disabler: true, required: plugin_crypto)
|
|
|
|
dep_libqrencode = dependency('libqrencode', disabler: true, required: get_option('plugin-omemo'))
|
|
|
|
dep_libsrtp2 = dependency('libsrtp2', disabler: true, required: plugin_crypto)
|
2023-06-20 16:54:28 +00:00
|
|
|
# libsignal-protocol-c has a history of breaking compatibility on the patch level
|
|
|
|
# we'll have to check compatibility for every new release
|
|
|
|
# distro maintainers may update this dependency after compatibility tests
|
2023-09-30 00:28:50 +00:00
|
|
|
dep_libsignal_protocol_c = dependency('libsignal-protocol-c', version: ['>=2.3.2', '<2.3.4'], disabler: true, required: get_option('plugin-omemo'))
|
|
|
|
dep_libsoup = dependency('libsoup-3.0', disabler: true, required: get_option('plugin-http-files'))
|
|
|
|
dep_nice = dependency('nice', version: '>=0.1.15', disabler: true, required: get_option('plugin-ice'))
|
2023-03-20 01:01:22 +00:00
|
|
|
dep_m = meson.get_compiler('c').find_library('m', required: false)
|
|
|
|
dep_sqlite3 = dependency('sqlite3', version: '>=3.24')
|
2023-09-30 01:05:11 +00:00
|
|
|
dep_webrtc_audio_processing = dependency('webrtc-audio-processing', version: ['>=0.2', '<0.4'], required: get_option('plugin-rtp-webrtc-audio-processing'))
|
2023-03-20 01:01:22 +00:00
|
|
|
|
|
|
|
prog_git = find_program('git', required: false)
|
|
|
|
prog_python = python.find_installation()
|
|
|
|
|
|
|
|
subdir('qlite')
|
|
|
|
subdir('xmpp-vala')
|
|
|
|
subdir('libdino')
|
|
|
|
subdir('main')
|
2023-06-12 21:43:23 +00:00
|
|
|
subdir('crypto-vala')
|
2023-06-21 22:04:59 +00:00
|
|
|
subdir('plugins')
|