#
# Copyright 2021-2025 Software Radio Systems Limited
#
# This file is part of srsRAN
#
# srsRAN 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.
#
# srsRAN 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/.
#
# Find TRX header
find_package(TRX_DRIVER MODULE REQUIRED)
if (NOT (ZEROMQ_FOUND AND ENABLE_ZEROMQ))
message(SEND_ERROR "ZeroMQ is required to build TRX driver.")
endif ()
if (NOT ENABLE_EXPORT)
message(SEND_ERROR "Enable export is required. Append -DENABLE_EXPORT=TRUE to
the cmake arguments.")
endif ()
# Add shared library.
add_library(trx_srsran SHARED trx_srsran.cpp)
target_link_libraries(trx_srsran PRIVATE
srsran_radio
srsran_support
srslog)
target_include_directories(trx_srsran PRIVATE
${SRSRAN_INCLUDE_DIR}
${TRX_DRIVER_DIR}
"${SRSRAN_SOURCE_DIR}/external/fmt/include/"
"${SRSRAN_SOURCE_DIR}/external/")
# Add dynamic library test.
add_executable(trx_srsran_test trx_srsran_test.cpp)
target_link_libraries(trx_srsran_test dl)
target_include_directories(trx_srsran_test PRIVATE ${TRX_DRIVER_DIR})
add_test(trx_srsran_test trx_srsran_test ./libtrx_srsran.so)
target_link_options(trx_srsran_test PRIVATE "SHELL:-Wl,--no-as-needed -lpthread -
Wl,--as-needed")
# Make sure libtrx_srsran is compiled when trx_srsran_test is the only target.
add_dependencies(trx_srsran_test trx_srsran)