|
|
|
@ -55,7 +55,7 @@ set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
|
|
|
|
|
|
|
|
|
|
# Generate CMake to include build information
|
|
|
|
|
configure_file(
|
|
|
|
|
${CMAKE_SOURCE_DIR}/cmake/modules/SRSLTEbuildinfo.cmake.in
|
|
|
|
|
${PROJECT_SOURCE_DIR}/cmake/modules/SRSLTEbuildinfo.cmake.in
|
|
|
|
|
${CMAKE_BINARY_DIR}/SRSLTEbuildinfo.cmake
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
@ -196,7 +196,6 @@ else(BLADERF_FOUND OR UHD_FOUND OR SOAPYSDR_FOUND OR ZEROMQ_FOUND)
|
|
|
|
|
endif(BLADERF_FOUND OR UHD_FOUND OR SOAPYSDR_FOUND OR ZEROMQ_FOUND)
|
|
|
|
|
|
|
|
|
|
# Boost
|
|
|
|
|
if(ENABLE_SRSUE OR ENABLE_SRSENB OR ENABLE_SRSEPC)
|
|
|
|
|
if(BUILD_STATIC)
|
|
|
|
|
set(Boost_USE_STATIC_LIBS ON)
|
|
|
|
|
endif(BUILD_STATIC)
|
|
|
|
@ -207,9 +206,6 @@ if(ENABLE_SRSUE OR ENABLE_SRSENB OR ENABLE_SRSEPC)
|
|
|
|
|
if(UNIX AND EXISTS "/usr/lib64")
|
|
|
|
|
list(APPEND BOOST_LIBRARYDIR "/usr/lib64") #fedora 64-bit fix
|
|
|
|
|
endif(UNIX AND EXISTS "/usr/lib64")
|
|
|
|
|
if(UNIX AND EXISTS "/usr/lib/x86_64-linux-gnu/")
|
|
|
|
|
list(APPEND BOOST_LIBRARYDIR "/usr/lib/x86_64-linux-gnu/")
|
|
|
|
|
endif(UNIX AND EXISTS "/usr/lib/x86_64-linux-gnu/")
|
|
|
|
|
set(Boost_ADDITIONAL_VERSIONS
|
|
|
|
|
"1.35.0" "1.35" "1.36.0" "1.36" "1.37.0" "1.37" "1.38.0" "1.38" "1.39.0" "1.39"
|
|
|
|
|
"1.40.0" "1.40" "1.41.0" "1.41" "1.42.0" "1.42" "1.43.0" "1.43" "1.44.0" "1.44"
|
|
|
|
@ -220,7 +216,13 @@ if(ENABLE_SRSUE OR ENABLE_SRSENB OR ENABLE_SRSEPC)
|
|
|
|
|
"1.65.0" "1.65" "1.66.0" "1.66" "1.67.0" "1.67" "1.68.0" "1.68" "1.69.0" "1.69"
|
|
|
|
|
)
|
|
|
|
|
find_package(Boost "1.35" COMPONENTS ${BOOST_REQUIRED_COMPONENTS})
|
|
|
|
|
endif(ENABLE_SRSUE OR ENABLE_SRSENB OR ENABLE_SRSEPC)
|
|
|
|
|
|
|
|
|
|
if(Boost_FOUND)
|
|
|
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
|
link_directories(${Boost_LIBRARY_DIRS})
|
|
|
|
|
else(Boost_FOUND)
|
|
|
|
|
message(FATAL_ERROR "Boost required to build srsLTE")
|
|
|
|
|
endif (Boost_FOUND)
|
|
|
|
|
|
|
|
|
|
# srsGUI
|
|
|
|
|
if(ENABLE_GUI)
|
|
|
|
@ -261,7 +263,7 @@ set(DATA_DIR share/${CPACK_PACKAGE_NAME})
|
|
|
|
|
|
|
|
|
|
# Auto-generate config install helper and mark for installation
|
|
|
|
|
configure_file(
|
|
|
|
|
${CMAKE_SOURCE_DIR}/cmake/modules/SRSLTE_install_configs.sh.in
|
|
|
|
|
${PROJECT_SOURCE_DIR}/cmake/modules/SRSLTE_install_configs.sh.in
|
|
|
|
|
${CMAKE_BINARY_DIR}/srslte_install_configs.sh
|
|
|
|
|
)
|
|
|
|
|
install(PROGRAMS ${CMAKE_BINARY_DIR}/srslte_install_configs.sh DESTINATION ${RUNTIME_DIR})
|
|
|
|
|