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.
|
|
|
#
|
|
|
|
# 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 ttcn3_ue.cc ttcn3_syssim.cc)
|
|
|
|
add_executable(ttcn3_dut ttcn3_dut.cc lte_ttcn3_phy.cc ${SOURCES})
|
|
|
|
|
|
|
|
set(LINK_LIBRARIES srsue_stack
|
|
|
|
srsue_upper
|
|
|
|
srsue_rrc
|
|
|
|
srslte_upper
|
|
|
|
srslte_common
|
|
|
|
srslte_mac
|
|
|
|
srslte_phy
|
|
|
|
srslte_radio
|
|
|
|
srslte_upper
|
|
|
|
srsue_phy
|
|
|
|
srsue_mac
|
|
|
|
rrc_asn1
|
|
|
|
sctp
|
|
|
|
${Boost_LIBRARIES})
|
|
|
|
|
|
|
|
if (ENABLE_5GNR)
|
|
|
|
set(LINK_LIBRARIES ${LINK_LIBRARIES} rrc_nr_asn1 srsue_mac_nr srslte_mac)
|
|
|
|
endif (ENABLE_5GNR)
|
|
|
|
|
|
|
|
target_link_libraries(ttcn3_dut ${LINK_LIBRARIES})
|
|
|
|
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/srsue/test/ttcn3/hdr)
|