# Copyright (C) 2019 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 . libsgwu_sources = files(''' timer.h event.h context.h gtp-path.h sxa-build.h sxa-handler.h pfcp-path.h sgwu-sm.h init.c timer.c event.c context.c gtp-path.c sxa-build.c sxa-handler.c pfcp-path.c pfcp-sm.c sgwu-sm.c '''.split()) libsgwu = static_library('sgwu', sources : libsgwu_sources, dependencies : libpfcp_dep, install : false) libsgwu_dep = declare_dependency( link_with : libsgwu, dependencies : libpfcp_dep) sgwu_sources = files(''' app.c ../main.c '''.split()) executable('open5gs-sgwud', sources : sgwu_sources, c_args : '-DDEFAULT_CONFIG_FILENAME="@0@/sgwu.yaml"'.format(open5gs_sysconfdir), include_directories : srcinc, dependencies : libsgwu_dep, install_rpath : libdir, install : true)