mirror of https://github.com/pvnis/srsRAN_4G.git
gnb,stack: move gNB components into own folder
* move RRC, MAC, NGAP, SDAP into gnb folder * move testing code below respective layersmaster
parent
951fea5f61
commit
0967cda042
@ -0,0 +1,9 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
add_subdirectory(src)
|
@ -0,0 +1,9 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
add_subdirectory(stack)
|
@ -0,0 +1,18 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
include_directories(${PROJECT_SOURCE_DIR})
|
||||
|
||||
add_subdirectory(mac)
|
||||
add_subdirectory(ngap)
|
||||
add_subdirectory(rrc)
|
||||
add_subdirectory(sdap)
|
||||
|
||||
set(SOURCES gnb_stack_nr.cc)
|
||||
|
||||
add_library(srsgnb_stack STATIC ${SOURCES})
|
@ -0,0 +1,15 @@
|
||||
#
|
||||
# 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 rrc_nr.cc cell_asn1_config.cc)
|
||||
add_library(srsgnb_rrc STATIC ${SOURCES})
|
||||
target_link_libraries(srsgnb_rrc srsran_rrc_nr)
|
||||
|
||||
include_directories(${PROJECT_SOURCE_DIR})
|
||||
|
||||
add_subdirectory(test)
|
@ -0,0 +1,11 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
add_executable(rrc_nr_test rrc_nr_test.cc)
|
||||
target_link_libraries(rrc_nr_test srsgnb_rrc test_helpers ${ATOMIC_LIBS})
|
||||
add_test(rrc_nr_test rrc_nr_test -i ${CMAKE_CURRENT_SOURCE_DIR}/../..)
|
@ -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 sdap.cc)
|
||||
add_library(srsgnb_sdap STATIC ${SOURCES})
|
Loading…
Reference in New Issue