
This will prove beneficial when we also add tests for the policy engine plugins. The increased locality is also nice to have.
141 lines
4.0 KiB
Meson
141 lines
4.0 KiB
Meson
#
|
|
# Copyright (C) 2018 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/>.
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
project(
|
|
'calls',
|
|
'c', 'vala',
|
|
version: '43.beta.0',
|
|
license: 'GPLv3+',
|
|
meson_version: '>= 0.56.0',
|
|
default_options: [
|
|
'warning_level=1',
|
|
'buildtype=debugoptimized',
|
|
'c_std=gnu11'
|
|
]
|
|
)
|
|
|
|
calls_id = 'org.gnome.Calls'
|
|
calls_homepage = 'https://gitlab.gnome.org/GNOME/calls'
|
|
calls_name = meson.project_name()
|
|
calls_version = meson.project_version()
|
|
|
|
top_include = include_directories('.')
|
|
|
|
prefix = get_option('prefix')
|
|
builddir = meson.current_build_dir()
|
|
full_bindir = join_paths(prefix, get_option('bindir'))
|
|
libdir = get_option('libdir')
|
|
full_servicedir = join_paths(prefix, get_option('datadir'), 'dbus-1', 'services')
|
|
localedir = get_option('localedir')
|
|
full_localedir = join_paths(prefix, localedir)
|
|
full_calls_plugin_libdir = join_paths(prefix, libdir, calls_name, 'plugins')
|
|
# Path to plugins inside the build dir, used for testing
|
|
full_calls_plugin_builddir = join_paths(builddir, 'plugins')
|
|
|
|
libcall_ui_dep = dependency('call-ui',
|
|
fallback: ['libcall-ui', 'libcall_ui_dep'],
|
|
default_options: ['tests=false', 'examples=false', 'gtk_doc=false'],
|
|
)
|
|
|
|
config_data = configuration_data()
|
|
config_data.set_quoted('APP_ID', calls_id)
|
|
config_data.set_quoted('APP_DATA_NAME', calls_name)
|
|
config_data.set_quoted('GETTEXT_PACKAGE', calls_name)
|
|
config_data.set_quoted('LOCALEDIR', full_localedir)
|
|
config_data.set_quoted('PLUGIN_LIBDIR', full_calls_plugin_libdir)
|
|
config_data.set_quoted('PACKAGE_URL', calls_homepage)
|
|
config_data.set_quoted('PACKAGE_VERSION', calls_version)
|
|
config_data.set('PACKAGE_URL_RAW', calls_homepage)
|
|
|
|
run_data = configuration_data()
|
|
run_data.set('ABS_BUILDDIR', meson.current_build_dir())
|
|
run_data.set('ABS_SRCDIR', meson.current_source_dir())
|
|
|
|
configure_file(
|
|
input: 'run.in',
|
|
output: 'run',
|
|
configuration: run_data)
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
global_c_args = []
|
|
test_c_args = [
|
|
'-Wcast-align',
|
|
'-Wdate-time',
|
|
'-Wdeclaration-after-statement',
|
|
['-Werror=format-security', '-Werror=format=2'],
|
|
'-Wendif-labels',
|
|
'-Werror=incompatible-pointer-types',
|
|
'-Werror=missing-declarations',
|
|
'-Werror=overflow',
|
|
'-Werror=return-type',
|
|
'-Werror=shift-count-overflow',
|
|
'-Werror=shift-overflow=2',
|
|
'-Wfloat-equal',
|
|
'-Wformat-nonliteral',
|
|
'-Wformat-security',
|
|
'-Winit-self',
|
|
'-Wmaybe-uninitialized',
|
|
'-Wmisleading-indentation',
|
|
'-Wmissing-include-dirs',
|
|
'-Wmissing-noreturn',
|
|
'-Wnested-externs',
|
|
'-Wold-style-definition',
|
|
'-Wshadow',
|
|
'-Wstrict-prototypes',
|
|
'-Wswitch-default',
|
|
'-Wno-switch-enum',
|
|
'-Wtype-limits',
|
|
'-Wunused-function',
|
|
'-Wunused-variable',
|
|
'-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_64',
|
|
'-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_70',
|
|
# see https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/332
|
|
'-DEDS_DISABLE_DEPRECATED',
|
|
# in preparation for the switch to Gtk4 we should make sure not to use deprecated symbols
|
|
'-DGDK_DISABLE_DEPRECATED',
|
|
'-DGTK_DISABLE_DEPRECATED',
|
|
]
|
|
|
|
if get_option('buildtype') != 'plain'
|
|
test_c_args += '-fstack-protector-strong'
|
|
endif
|
|
|
|
foreach arg: test_c_args
|
|
if cc.has_multi_arguments(arg)
|
|
global_c_args += arg
|
|
endif
|
|
endforeach
|
|
|
|
add_project_arguments(
|
|
global_c_args,
|
|
language: 'c'
|
|
)
|
|
|
|
subdir('po')
|
|
subdir('src')
|
|
subdir('tests')
|
|
subdir('plugins')
|
|
subdir('doc')
|
|
subdir('data')
|
|
|
|
meson.add_install_script('build-aux/meson/postinstall.py')
|