srsLTE/srsenb/test/mac/CMakeLists.txt

21 lines
928 B
CMake
Raw Normal View History

2017-06-01 03:25:57 -07:00
# Scheduler test
add_executable(scheduler_test scheduler_test.cc)
target_link_libraries(scheduler_test srsenb_mac
srsenb_phy
srslte_common
srslte_phy
2019-01-17 03:42:01 -08:00
rrc_asn1
2017-06-01 03:25:57 -07:00
${CMAKE_THREAD_LIBS_INIT}
${Boost_LIBRARIES})
2019-04-23 01:53:11 -07:00
# Scheduler test random
add_executable(scheduler_test_rand scheduler_test_rand.cc)
target_link_libraries(scheduler_test_rand srsenb_mac
srsenb_phy
srslte_common
srslte_phy
rrc_asn1
${CMAKE_THREAD_LIBS_INIT}
${Boost_LIBRARIES})