File: meson.build

package info (click to toggle)
libssc 0.3.0-1
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 1,840 kB
  • sloc: ansic: 3,551; python: 647; sh: 15; makefile: 11
file content (68 lines) | stat: -rw-r--r-- 2,046 bytes parent folder | download
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
# 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/>.
#

msgs_inc = include_directories('.')

msgs = [
  'common',
  'sensor-suid',
  'sensor-proximity',
  'sensor-light',
  'sensor-accelerometer',
  'sensor-magnetometer',
  'sensor-rotationvector',
  'sensor-gyroscope',
]
sources_gen = []
headers_gen = []
python_gen = []

foreach m: msgs
  name = 'ssc-' + m
  # C
  protobuf_c_gen = custom_target (
    name + '_c',
    input: name + '.proto',
    output: [name + '.pb-c.c', name + '.pb-c.h'],
    command: [protocc_tool, '--proto_path=@CURRENT_SOURCE_DIR@', '--c_out=@OUTDIR@', '@INPUT@'],
    install: true,
    install_dir: [false, libssc_glib_pkgincludedir]
  )
  sources_gen += protobuf_c_gen[0]
  headers_gen += protobuf_c_gen[1]

  # Python
  python_name = 'ssc_' + m.replace('-', '_')
  protobuf_python_gen = custom_target (
    python_name + '_py',
    input: name + '.proto',
    output: [python_name + '_pb2.py'],
    command: [protoc_tool, '-I=@CURRENT_SOURCE_DIR@', '--python_out=@OUTDIR@', '@INPUT@'],
    install: true,
    install_dir: [libssc_mocking_dir]
  )
  python_gen += protobuf_python_gen[0]
endforeach

generated_dep = declare_dependency(
  sources: sources_gen + headers_gen + python_gen,
  include_directories: includes,
  dependencies: deps
)
deps += generated_dep