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.
30 lines
1011 B
CMake
30 lines
1011 B
CMake
#
|
|
# 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_library(sched_nr_test_suite sched_nr_common_test.cc sched_nr_ue_ded_test_suite.cc)
|
|
|
|
add_executable(sched_nr_test sched_nr_test.cc sched_nr_sim_ue.cc)
|
|
target_link_libraries(sched_nr_test
|
|
srsgnb_mac
|
|
sched_nr_test_suite
|
|
srsran_common
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
${Boost_LIBRARIES})
|
|
add_nr_test(sched_nr_test sched_nr_test)
|
|
|
|
add_executable(sched_nr_prb_test sched_nr_prb_test.cc)
|
|
target_link_libraries(sched_nr_prb_test
|
|
srsgnb_mac
|
|
srsran_common
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
${Boost_LIBRARIES})
|
|
add_nr_test(sched_nr_prb_test sched_nr_prb_test)
|
|
|
|
add_executable(sched_nr_rar_test sched_nr_rar_test.cc)
|
|
target_link_libraries(sched_nr_rar_test srsgnb_mac sched_nr_test_suite srsran_common)
|
|
add_nr_test(sched_nr_rar_test sched_nr_rar_test) |