2021-02-02 14:48:12 +00:00
|
|
|
#
|
|
|
|
# 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('.')
|
|
|
|
|
2022-07-18 20:30:19 +00:00
|
|
|
sip_install_dir = join_paths(calls_provider_plugin_libdir, 'sip')
|
2021-02-02 14:48:12 +00:00
|
|
|
|
|
|
|
sip_plugin = configure_file(
|
2023-01-24 10:50:33 +00:00
|
|
|
input: 'sip.plugin.in.in',
|
|
|
|
output: 'sip.plugin.in',
|
2021-02-02 14:48:12 +00:00
|
|
|
configuration: config_data,
|
|
|
|
)
|
|
|
|
|
2023-01-24 10:50:33 +00:00
|
|
|
i18n_plugin = i18n.merge_file(
|
|
|
|
input: sip_plugin,
|
|
|
|
output: 'sip.plugin',
|
|
|
|
po_dir: po_dir,
|
|
|
|
type: 'desktop',
|
|
|
|
build_by_default: true,
|
2023-06-13 16:53:30 +00:00
|
|
|
install: true,
|
2023-01-24 10:50:33 +00:00
|
|
|
install_dir: sip_install_dir,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-02-02 14:48:12 +00:00
|
|
|
sip_deps = [
|
|
|
|
dependency('gobject-2.0'),
|
|
|
|
dependency('gstreamer-1.0'),
|
2023-08-27 01:55:35 +00:00
|
|
|
dependency('gtk4'),
|
2024-04-26 02:46:34 +00:00
|
|
|
dependency('libadwaita-1', version: '>= 1.4'),
|
2021-02-02 14:48:12 +00:00
|
|
|
dependency('libpeas-1.0'),
|
|
|
|
dependency('sofia-sip-ua-glib'),
|
2021-07-08 15:35:04 +00:00
|
|
|
dependency('libsecret-1'),
|
2021-02-02 14:48:12 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
sip_sources = files(
|
|
|
|
[
|
2022-04-26 11:07:58 +00:00
|
|
|
'calls-sdp-crypto-context.c', 'calls-sdp-crypto-context.h',
|
2022-09-15 16:19:03 +00:00
|
|
|
'calls-sip-account-widget.c', 'calls-sip-account-widget.h',
|
2021-02-02 14:48:12 +00:00
|
|
|
'calls-sip-call.c', 'calls-sip-call.h',
|
2022-09-15 16:19:03 +00:00
|
|
|
'calls-sip-media-manager.c', 'calls-sip-media-manager.h',
|
|
|
|
'calls-sip-media-pipeline.c', 'calls-sip-media-pipeline.h',
|
2021-02-02 14:48:12 +00:00
|
|
|
'calls-sip-origin.c', 'calls-sip-origin.h',
|
2021-02-17 22:48:33 +00:00
|
|
|
'calls-sip-provider.c', 'calls-sip-provider.h',
|
|
|
|
'calls-sip-util.c', 'calls-sip-util.h',
|
2022-04-14 15:09:57 +00:00
|
|
|
'calls-srtp-utils.c', 'calls-srtp-utils.h',
|
2021-02-17 22:48:33 +00:00
|
|
|
'gst-rfc3551.c', 'gst-rfc3551.h',
|
2021-02-02 14:48:12 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2022-02-28 10:18:36 +00:00
|
|
|
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
|
|
|
|
|
2021-02-12 09:18:15 +00:00
|
|
|
sip_enum_headers = [
|
2022-04-26 11:07:58 +00:00
|
|
|
'calls-sdp-crypto-context.h',
|
2021-02-12 09:18:15 +00:00
|
|
|
'calls-sip-util.h',
|
|
|
|
]
|
|
|
|
|
2022-03-01 07:59:16 +00:00
|
|
|
sip_enums = gnome.mkenums_simple('calls-sip-enums',
|
|
|
|
sources: sip_enum_headers,
|
2021-02-12 09:18:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
sip_sources += sip_enums
|
|
|
|
|
2021-07-05 09:55:44 +00:00
|
|
|
sip_resources = gnome.compile_resources(
|
|
|
|
'sip-resources',
|
|
|
|
'sip.gresources.xml',
|
|
|
|
source_dir: '.',
|
|
|
|
c_name: 'call',
|
|
|
|
)
|
|
|
|
|
|
|
|
sip_sources += sip_resources
|
|
|
|
|
2021-04-09 07:23:10 +00:00
|
|
|
calls_sip = shared_module(
|
2021-02-02 14:48:12 +00:00
|
|
|
'sip',
|
2021-04-16 16:22:02 +00:00
|
|
|
sip_sources,
|
2021-02-02 14:48:12 +00:00
|
|
|
dependencies: sip_deps,
|
|
|
|
include_directories: src_include,
|
2021-05-17 13:21:54 +00:00
|
|
|
link_with: libcalls,
|
2021-02-02 14:48:12 +00:00
|
|
|
install: true,
|
|
|
|
install_dir: sip_install_dir
|
|
|
|
)
|