move ngap files into their own folders

This commit is contained in:
Francisco 2021-05-17 13:16:51 +01:00 committed by Francisco Paisana
parent 1488606156
commit 22f1f2d56c
5 changed files with 12 additions and 4 deletions

View File

@ -9,6 +9,7 @@
add_subdirectory(mac)
add_subdirectory(rrc)
add_subdirectory(s1ap)
add_subdirectory(ngap)
add_subdirectory(upper)
set(SOURCES enb_stack_lte.cc)

View File

@ -0,0 +1,10 @@
#
# Copyright 2013-2021 Software Radio Systems Limited
#
# By using this file, you agree to the terms and conditions set
# forth in the LICENSE file which can be found at the top level of
# the distribution.
#
set(SOURCES ngap.cc)
add_library(srsgnb_ngap STATIC ${SOURCES})

View File

@ -10,7 +10,7 @@
*
*/
#include "srsenb/hdr/stack/s1ap/ngap.h"
#include "srsenb/hdr/stack/ngap/ngap.h"
#define procError(fmt, ...) ngap_ptr->logger.error("Proc \"%s\" - " fmt, name(), ##__VA_ARGS__)
#define procWarning(fmt, ...) ngap_ptr->logger.warning("Proc \"%s\" - " fmt, name(), ##__VA_ARGS__)

View File

@ -8,6 +8,3 @@
set(SOURCES s1ap.cc)
add_library(srsenb_s1ap STATIC ${SOURCES})
set(SOURCES ngap.cc)
add_library(srsgnb_ngap STATIC ${SOURCES})