Files
calls/plugins/provider/sip/meson.build
Evangelos Ribeiro Tzaras 3184fa3af0 tests: Depend on .plugin files to exist
When .plugin files are missing, the plugins will not be discoverable.
These were only getting built when run with `meson compile`,
but not for `meson test`.

Helps: https://gitlab.gnome.org/GNOME/calls/-/issues/719

Signed-off-by: Evangelos Ribeiro Tzaras <devrtz@fortysixandtwo.eu>
Part-of: <https://gitlab.gnome.org/GNOME/calls/-/merge_requests/798>
2025-10-28 13:33:28 +00:00

101 lines
2.4 KiB
Meson

#
# Copyright (C) 2021 Purism SPC
#
# This file is part of Calls.
#
# Calls is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Calls is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Calls. If not, see <http://www.gnu.org/licenses/>.
#
# Author: Evangelos Ribeiro Tzaras <evangelos.tzaras@puri.sm>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
sip_include = include_directories('.')
sip_install_dir = join_paths(calls_provider_plugin_libdir, 'sip')
sip_plugin = configure_file(
input: 'sip.plugin.in.in',
output: 'sip.plugin.in',
configuration: config_data,
)
i18n_plugin = i18n.merge_file(
input: sip_plugin,
output: 'sip.plugin',
po_dir: po_dir,
type: 'desktop',
build_by_default: true,
install: true,
install_dir: sip_install_dir,
)
plugins_test_depends += [i18n_plugin]
sip_deps = [
dependency('gobject-2.0'),
dependency('gstreamer-1.0'),
dependency('gtk4'),
dependency('libadwaita-1', version: '>= 1.4'),
dependency('libpeas-2'),
dependency('sofia-sip-ua-glib'),
dependency('libsecret-1'),
]
sip_sources = files(
'calls-sdp-crypto-context.c',
'calls-sip-account-widget.c',
'calls-sip-call.c',
'calls-sip-media-manager.c',
'calls-sip-media-pipeline.c',
'calls-sip-origin.c',
'calls-sip-provider.c',
'calls-sip-util.c',
'calls-srtp-utils.c',
'gst-rfc3551.c',
)
pipeline_enum_headers = ['calls-sip-media-pipeline.h']
pipeline_enums = gnome.mkenums_simple(
'calls-media-pipeline-enums',
sources: pipeline_enum_headers,
)
sip_sources += pipeline_enums
sip_enum_headers = ['calls-sdp-crypto-context.h', 'calls-sip-util.h']
sip_enums = gnome.mkenums_simple('calls-sip-enums', sources: sip_enum_headers)
sip_sources += sip_enums
sip_resources = gnome.compile_resources(
'sip-resources',
'sip.gresources.xml',
source_dir: '.',
c_name: 'call',
)
sip_sources += sip_resources
calls_sip = shared_module(
'sip',
sip_sources,
dependencies: sip_deps,
include_directories: src_include,
link_with: libcalls,
install: true,
install_dir: sip_install_dir,
)