mirror of https://github.com/pvnis/srsRAN_4G.git
refactor - create s1ap dedicated folder
parent
0e0835a805
commit
1488606156
@ -0,0 +1,13 @@
|
||||
#
|
||||
# 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 s1ap.cc)
|
||||
add_library(srsenb_s1ap STATIC ${SOURCES})
|
||||
|
||||
set(SOURCES ngap.cc)
|
||||
add_library(srsgnb_ngap STATIC ${SOURCES})
|
@ -0,0 +1,12 @@
|
||||
#
|
||||
# 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(s1ap_test s1ap_test.cc)
|
||||
target_link_libraries(s1ap_test srsran_common s1ap_asn1 srsenb_s1ap srsenb_upper srsran_upper s1ap_asn1 ${SCTP_LIBRARIES})
|
||||
add_test(s1ap_test s1ap_test)
|
||||
|
Loading…
Reference in New Issue