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.
68 lines
2.5 KiB
CMake
68 lines
2.5 KiB
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.
|
|
#
|
|
|
|
add_subdirectory(phy)
|
|
add_subdirectory(stack)
|
|
|
|
# Link libstdc++ and libgcc
|
|
if(BUILD_STATIC)
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libstdc++ -static-libgcc")
|
|
endif(BUILD_STATIC)
|
|
|
|
if (RPATH)
|
|
set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
|
|
endif (RPATH)
|
|
|
|
add_executable(srsue main.cc ue.cc metrics_stdout.cc metrics_csv.cc)
|
|
|
|
set(SRSUE_SOURCES srsue_phy srsue_stack srsue_upper srsue_mac srsue_rrc srslog)
|
|
set(SRSLTE_SOURCES srslte_common srslte_mac srslte_phy srslte_radio srslte_upper rrc_asn1 srslog)
|
|
|
|
if(ENABLE_5GNR)
|
|
set(SRSUE_SOURCES ${SRSUE_SOURCES} srsue_nr_stack srsue_rrc_nr srsue_mac_nr)
|
|
set(SRSLTE_SOURCES ${SRSLTE_SOURCES} rrc_nr_asn1 ngap_nr_asn1)
|
|
endif()
|
|
|
|
target_link_libraries(srsue ${SRSUE_SOURCES}
|
|
${SRSLTE_SOURCES}
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
${Boost_LIBRARIES})
|
|
|
|
if (RPATH)
|
|
set_target_properties(srsue PROPERTIES INSTALL_RPATH ".")
|
|
endif (RPATH)
|
|
|
|
########################################################################
|
|
# UE initialization test
|
|
########################################################################
|
|
|
|
if(NOT SRSGUI_FOUND)
|
|
# Make sure srsue returns 0 and it does not leak
|
|
add_test(srsue_version srsue --version)
|
|
add_test(srsue_help srsue --help)
|
|
endif(NOT SRSGUI_FOUND)
|
|
|
|
# Checks that ue.conf.example is valid and it does not leak memory if RF fails
|
|
if (ZEROMQ_FOUND)
|
|
add_test(ue_rf_failure srsue ${CMAKE_SOURCE_DIR}/srsue/ue.conf.example --rf.device_name=zmq)
|
|
add_test(ue_rf_failure_max_channels srsue ${CMAKE_SOURCE_DIR}/srsue/ue.conf.example --rf.device_name=zmq --rf.nof_antennas=4 --rf.nof_carriers=5)
|
|
add_test(ue_rf_failure_exceeds_channels srsue ${CMAKE_SOURCE_DIR}/srsue/ue.conf.example --rf.device_name=zmq --rf.nof_antennas=5 --rf.nof_carriers=5)
|
|
endif(ZEROMQ_FOUND)
|
|
|
|
########################################################################
|
|
# Option to run command after build (useful for remote builds)
|
|
########################################################################
|
|
if (NOT ${BUILDUE_CMD} STREQUAL "")
|
|
message(STATUS "Added custom post-build-UE command: ${BUILDUE_CMD}")
|
|
add_custom_command(TARGET srsue POST_BUILD COMMAND ${BUILDUE_CMD})
|
|
else(NOT ${BUILDUE_CMD} STREQUAL "")
|
|
message(STATUS "No post-build-UE command defined")
|
|
endif (NOT ${BUILDUE_CMD} STREQUAL "")
|
|
|
|
install(TARGETS srsue DESTINATION ${RUNTIME_DIR})
|