blob: 727aa68e972731da6eca71b40491c85ae295f844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2019 - 2021 Iñigo Martinez <inigomartinez@gmail.com>
cflags = cc.get_supported_arguments([
'-Wno-empty-body',
'-Wno-sign-compare',
'-Wno-switch-default',
])
executable(
'swi-update',
sources: 'swi-update.c',
c_args: cflags,
)
qmi_network = configure_file(
input: 'qmi-network.in',
output: '@BASENAME@',
configuration: version_conf,
install_dir: qmi_bindir,
install_mode: 'rwxr-xr-x',
)
|