|
|
|
#
|
|
|
|
# Copyright 2013-2019 Software Radio Systems Limited
|
|
|
|
#
|
|
|
|
# This file is part of srsLTE
|
|
|
|
#
|
|
|
|
# srsLTE is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# srsLTE is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# A copy of the GNU Affero General Public License can be found in
|
|
|
|
# the LICENSE file in the top-level directory of this distribution
|
|
|
|
# and at http://www.gnu.org/licenses/.
|
|
|
|
#
|
|
|
|
|
|
|
|
add_subdirectory(phy)
|
|
|
|
add_subdirectory(mac)
|
|
|
|
add_subdirectory(upper)
|
|
|
|
|
|
|
|
# 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_base.cc ue.cc metrics_stdout.cc metrics_csv.cc)
|
|
|
|
target_link_libraries(srsue srsue_mac
|
|
|
|
srsue_phy
|
|
|
|
srsue_upper
|
|
|
|
srslte_common
|
|
|
|
srslte_phy
|
|
|
|
srslte_upper
|
|
|
|
srslte_radio
|
|
|
|
rrc_asn1
|
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
|
|
${Boost_LIBRARIES})
|
|
|
|
|
|
|
|
if (RPATH)
|
|
|
|
set_target_properties(srsue PROPERTIES INSTALL_RPATH ".")
|
|
|
|
endif (RPATH)
|
|
|
|
|
|
|
|
install(TARGETS srsue DESTINATION ${RUNTIME_DIR})
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# 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})
|