# Copyright (C) 2019,2020 by Sukchan Lee # 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 . libtestcommon_conf = configuration_data() libtestcommon_conf.set_quoted('MESON_BUILD_ROOT', meson.build_root()) configure_file(output : 'test-config-private.h', configuration : libtestcommon_conf) libtestcommon_sources = files(''' sctp.c gtpu.c context.c application.c ngap-build.c ngap-handler.c ngap-path.c gmm-build.c gmm-handler.c gsm-build.c gsm-handler.c s1ap-build.c s1ap-handler.c s1ap-path.c emm-build.c emm-handler.c esm-build.c esm-handler.c nas-path.c nas-encoder.c nas-security.c sgsap-build.c '''.split()) libtestcommon_inc = include_directories('.') libtestcommon = static_library('testcomon', sources : libtestcommon_sources, c_args : testunit_core_cc_flags, include_directories : [libtestcommon_inc, testinc, srcinc], dependencies : [libcore_dep, libipfw_dep, libapp_dep, libdbi_dep, libsctp_dep, libgtp_dep, libs1ap_dep, libngap_dep, libnas_eps_dep, libnas_5gs_dep, libdiameter_rx_dep, libdiameter_cx_dep, libdiameter_swx_dep, libdiameter_s6b_dep, libaf_dep], install : false) libtestcommon_dep = declare_dependency( link_with : libtestcommon, include_directories : [libtestcommon_inc, testinc, srcinc], dependencies : [libcore_dep, libipfw_dep, libapp_dep, libdbi_dep, libsctp_dep, libgtp_dep, libs1ap_dep, libngap_dep, libnas_eps_dep, libnas_5gs_dep, libdiameter_rx_dep, libdiameter_cx_dep, libdiameter_swx_dep, libdiameter_s6b_dep, libaf_dep])