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.
9 lines
250 B
CMake
9 lines
250 B
CMake
8 years ago
|
file(GLOB SOURCES "*.cc")
|
||
|
add_library(srsenb_phy SHARED ${SOURCES})
|
||
|
target_link_libraries(srsenb_phy ${SRSLTE_LIBRARIES} )
|
||
|
|
||
|
if(ENABLE_GUI AND SRSGUI_FOUND)
|
||
|
target_link_libraries(srsenb_phy ${SRSGUI_LIBRARIES})
|
||
|
endif(ENABLE_GUI AND SRSGUI_FOUND)
|
||
|
|