mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-01 21:00:19 +00:00
Rename Project to Open5GS
- Change BuildTool to Meson - Many BUGS Fixed
This commit is contained in:
parent
cb447af93a
commit
142763c280
919 changed files with 30459 additions and 6284 deletions
48
lib/diameter/common/meson.build
Normal file
48
lib/diameter/common/meson.build
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
# 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/>.
|
||||
|
||||
libdiameter_common_sources = files('''
|
||||
ogs-diameter-common.h
|
||||
|
||||
message.h
|
||||
logger.h
|
||||
base.h
|
||||
|
||||
libapp_sip.c
|
||||
message.c
|
||||
logger.c
|
||||
config.c
|
||||
init.c
|
||||
'''.split())
|
||||
|
||||
libdiameter_common_inc = include_directories('.')
|
||||
|
||||
freediameter_proj = subproject('freediameter')
|
||||
libfdcore_dep = freediameter_proj.get_variable('libfdcore_dep')
|
||||
|
||||
libdiameter_common = library('ogsdiameter-common',
|
||||
sources : libdiameter_common_sources,
|
||||
version : libogslib_version,
|
||||
c_args : '-DOGS_DIAM_COMPILATION',
|
||||
include_directories : [libdiameter_common_inc, libinc],
|
||||
dependencies : [libcore_dep, libfdcore_dep],
|
||||
install : true)
|
||||
|
||||
libdiameter_common_dep = declare_dependency(
|
||||
link_with : libdiameter_common,
|
||||
include_directories : [libdiameter_common_inc, libinc],
|
||||
dependencies : [libcore_dep, libfdcore_dep])
|
||||
Loading…
Add table
Add a link
Reference in a new issue