1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
# SPDX-License-Identifier: GPL-3.0-or-later
#
# libssc: Library to expose Qualcomm Sensor Core sensors
# Copyright (C) 2022-2025 Dylan Van Assche
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
project(
'libssc', 'c',
version: '0.3.0',
license: 'GPL3',
default_options: [
'buildtype=debugoptimized',
'c_std=gnu99',
'warning_level=2',
],
meson_version: '>= 0.58.0',
)
libssc_name = meson.project_name()
libssc_version = meson.project_version()
version_array = libssc_version.split('.')
libssc_version_major = version_array[0].to_int()
libssc_version_minor = version_array[1].to_int()
libssc_version_patch = version_array[2].to_int()
version_conf = configuration_data()
version_conf.set('VERSION', libssc_version)
version_conf.set('LIBSSC_MAJOR_VERSION', libssc_version_major)
version_conf.set('LIBSSC_MINOR_VERSION', libssc_version_minor)
version_conf.set('LIBSSC_PATCH_VERSION', libssc_version_patch)
pkg = import('pkgconfig')
libssc_includedir = get_option('includedir')
libssc_glib_include_subdir = libssc_name
libssc_glib_pkgincludedir = libssc_includedir / libssc_glib_include_subdir
libssc_mocking_dir = libssc_includedir / libssc_name / 'mocking'
cc = meson.get_compiler('c')
cc_flags = cc.get_supported_arguments([
'-Wno-unused-parameter',
'-Wno-cast-function-type',
'-Wno-packed',
])
add_project_arguments(cc_flags, language: 'c')
glib_version = '2.56'
libqmi_version = '1.33.4'
c_flags = [
'-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_' + glib_version.underscorify(),
'-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_' + glib_version.underscorify(),
'-DGLIB_DISABLE_DEPRECATION_WARNINGS',
'-DG_LOG_DOMAIN="libssc"',
]
glib_dep = dependency('glib-2.0', version: '>= ' + glib_version)
gio_unix_dep = dependency('gio-unix-2.0')
libqmi_dep = dependency('qmi-glib', version: '>=' + libqmi_version)
protobufc_dep = dependency('libprotobuf-c')
m_dep = cc.find_library('m', required: true)
protocc_tool = find_program('protoc-c', 'protoc-c')
protoc_tool = find_program('protoc', 'protoc')
deps = [
glib_dep,
dependency('gio-2.0'),
dependency('gobject-2.0'),
libqmi_dep,
protobufc_dep,
m_dep
]
glib_deps = declare_dependency(
dependencies: deps,
compile_args: c_flags
)
top_inc = include_directories('.')
data_inc = include_directories('./data')
src_inc = include_directories('./src')
includes = [top_inc, data_inc, src_inc]
sources = files()
headers = files()
subdir('data')
subdir('src')
subdir('mocking')
subdir('tests')
|