mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
732 B
CMake
26 lines
732 B
CMake
#
|
|
# Copyright 2013-2020 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 gtpu.cc
|
|
pdcp.cc
|
|
pdcp_entity_base.cc
|
|
pdcp_entity_lte.cc
|
|
rlc.cc
|
|
rlc_tm.cc
|
|
rlc_um_base.cc
|
|
rlc_um_lte.cc
|
|
rlc_am_base.cc
|
|
rlc_am_lte.cc)
|
|
|
|
if (ENABLE_5GNR)
|
|
set(SOURCES ${SOURCES} pdcp_entity_nr.cc rlc_um_nr.cc rlc_am_nr.cc)
|
|
endif(ENABLE_5GNR)
|
|
|
|
add_library(srslte_upper STATIC ${SOURCES})
|
|
target_link_libraries(srslte_upper srslte_common srslte_asn1)
|
|
INSTALL(TARGETS srslte_upper DESTINATION ${LIBRARY_DIR}) |