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.
29 lines
714 B
CMake
29 lines
714 B
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.
|
|
#
|
|
|
|
set(SOURCES
|
|
lte/cc_worker.cc
|
|
lte/sf_worker.cc
|
|
lte/worker_pool.cc
|
|
nr/cc_worker.cc
|
|
nr/sf_worker.cc
|
|
nr/worker_pool.cc
|
|
phy.cc
|
|
phy_common.cc
|
|
phy_ue_db.cc
|
|
prach_worker.cc
|
|
txrx.cc)
|
|
add_library(srsenb_phy STATIC ${SOURCES})
|
|
|
|
if(ENABLE_GUI AND SRSGUI_FOUND)
|
|
target_link_libraries(srsenb_phy ${SRSGUI_LIBRARIES})
|
|
endif(ENABLE_GUI AND SRSGUI_FOUND)
|
|
|
|
if(ENABLE_5GNR)
|
|
add_library(srsgnb_phy STATIC vnf_phy_nr.cc)
|
|
endif() |