open5gs/tests/volte/meson.build

40 lines
1.3 KiB
Meson
Raw Permalink Normal View History

2019-04-27 14:54:30 +00:00
# Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
# This file is part of Open5GS.
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2017-03-11 13:25:58 +00:00
2020-08-13 00:31:22 +00:00
testapp_volte_sources = files('''
2021-04-07 12:46:05 +00:00
test-fd-path.h
test-fd-path.c
diameter-rx-path.c
2021-04-05 08:09:39 +00:00
diameter-cx-path.c
2017-03-11 13:25:58 +00:00
abts-main.c
2020-08-22 03:33:45 +00:00
bearer-test.c
session-test.c
simple-test.c
2020-08-22 03:33:45 +00:00
rx-test.c
video-test.c
2021-04-05 08:09:39 +00:00
cx-test.c
'''.split())
2017-03-11 13:25:58 +00:00
2020-08-13 00:31:22 +00:00
testapp_volte_exe = executable('volte',
sources : testapp_volte_sources,
2020-07-09 05:38:09 +00:00
c_args : [testunit_core_cc_flags,
2022-11-21 13:06:29 +00:00
'-DFD_EXT_DIR="@0@"'.format(build_subprojects_freeDiameter_extensions_dir)],
2020-08-22 03:33:45 +00:00
dependencies : libtestepc_dep)
2020-08-22 03:33:45 +00:00
test('volte', testapp_volte_exe, is_parallel : false, suite: 'epc')