gqrx/CMakeLists.txt

270 lines
8.9 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.2)
2015-11-11 14:32:48 +00:00
# Project name
project(gqrx)
set(${PROJECT_NAME}_MAJOR "2")
2020-11-20 02:58:00 +00:00
set(${PROJECT_NAME}_MINOR "14")
2020-12-28 17:17:20 +00:00
set(${PROJECT_NAME}_PATCH "4")
2021-01-02 00:46:20 +00:00
set(IS_RELEASE FALSE)
2020-11-20 02:40:12 +00:00
if(IS_RELEASE)
if(${PROJECT_NAME}_PATCH EQUAL 0)
set(VERSION "${${PROJECT_NAME}_MAJOR}.${${PROJECT_NAME}_MINOR}")
else()
set(VERSION "${${PROJECT_NAME}_MAJOR}.${${PROJECT_NAME}_MINOR}.${${PROJECT_NAME}_PATCH}")
endif()
else()
execute_process(
COMMAND git describe --long --dirty
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE VERSION
OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif()
add_definitions(-DVERSION="${VERSION}")
file(WRITE version.txt ${VERSION})
set(PACKAGE ${PROJECT_NAME})
2015-11-11 14:32:48 +00:00
########### Main global variables ###########
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: Debug GProf Valgrind Release" FORCE)
endif()
set(BUILDTYPE ${CMAKE_BUILD_TYPE})
string(TOUPPER ${BUILDTYPE} BUILDTYPE)
add_definitions(-D${BUILDTYPE})
2015-11-11 14:32:48 +00:00
# We have some custom .cmake scripts not in the official distribution.
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/Modules)
2015-11-11 14:32:48 +00:00
# Add valgrind build options if necessary
2015-12-21 22:04:59 +00:00
if(${CMAKE_BUILD_TYPE} MATCHES "Valgrind")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0")
endif()
2015-11-11 14:32:48 +00:00
2020-01-26 10:13:34 +00:00
# Workaround for naming collision with log4cpp for Debug builds
add_definitions(-DLOG4CPP_FIX_ERROR_COLLISION=1)
2015-11-18 21:08:24 +00:00
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# using regular Clang or AppleClang
2015-12-21 22:04:59 +00:00
set(CMAKE_COMPILER_IS_CLANGXX 1)
2015-11-18 21:08:24 +00:00
endif()
2015-12-21 22:04:59 +00:00
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_CLANGXX)
add_definitions(-Wall)
add_definitions(-Wextra)
add_definitions(-Wno-unused-parameter)
add_definitions(-Wsign-compare)
endif()
2015-11-18 21:08:24 +00:00
if(MSVC)
#get math definitions like M_PI
add_definitions(-D_USE_MATH_DEFINES)
#use std::min()/std::max()
add_definitions(-DNOMINMAX)
#needed to dynamically link boost
add_definitions(-DBOOST_ALL_DYN_LINK)
#export gr-rds symbols
add_definitions(-Dgnuradio_RDS_EXPORTS)
if ("${MSVC_VERSION}" VERSION_LESS "1900")
add_definitions(-D__func__=__FUNCTION__)
endif()
endif()
2015-11-11 14:32:48 +00:00
# Functions & macros. These must be defined before including subdirectories.
# function to collect all the sources from sub-directories
# into a single list
function(add_source_files list)
2015-11-11 16:16:42 +00:00
get_property(is_defined GLOBAL PROPERTY SRCS_LIST DEFINED)
if(NOT is_defined)
define_property(GLOBAL PROPERTY ${list}
BRIEF_DOCS "List of source files"
FULL_DOCS "List of source files to be compiled in one library")
endif()
# make absolute paths
set(SRCS)
foreach(s IN LISTS ARGN)
if(NOT IS_ABSOLUTE "${s}")
get_filename_component(s "${s}" ABSOLUTE)
endif()
list(APPEND SRCS "${s}")
endforeach()
# append to global list
set_property(GLOBAL APPEND PROPERTY ${list} "${SRCS}")
2015-11-11 14:32:48 +00:00
endfunction(add_source_files)
if(APPLE AND EXISTS /usr/local/opt/qt5)
# Homebrew installs Qt5 (up to at least 5.9.1) in
# /usr/local/qt5, ensure it can be found by CMake since
# it is not in the default /usr/local prefix.
list(APPEND CMAKE_PREFIX_PATH "/usr/local/opt/qt5")
endif()
2015-11-11 14:32:48 +00:00
if(APPLE AND EXISTS /usr/local/opt/icu4c/lib)
# With Homebrew icu4c, `-licudata -licui18n -licuuc`
# are required, which reside in /usr/local/opt/icu4c/lib.
# See src/CMakeFiles/gqrx.dir/link.txt in the build directory.
set(ICU4C_LIBRARY_DIRS "/usr/local/opt/icu4c/lib")
else()
set(ICU4C_LIBRARY_DIRS "")
endif()
2015-11-11 14:32:48 +00:00
# 3rd Party Dependency Stuff
find_package(Qt5 COMPONENTS Core Network Widgets Svg REQUIRED)
2015-11-11 14:32:48 +00:00
find_package(Gnuradio-osmosdr REQUIRED)
2019-10-06 23:05:15 +00:00
set(GR_REQUIRED_COMPONENTS RUNTIME ANALOG AUDIO BLOCKS DIGITAL FILTER FFT PMT)
find_package(Gnuradio REQUIRED COMPONENTS analog audio blocks digital filter fft)
if(Gnuradio_VERSION VERSION_LESS "3.8")
find_package(Volk)
endif()
2019-10-06 23:05:15 +00:00
if(NOT Gnuradio_FOUND)
message(FATAL_ERROR "GnuRadio Runtime required to compile gqrx")
endif()
2019-10-07 00:38:49 +00:00
# Pass the GNU Radio version as 0xMMNNPP BCD.
math(EXPR GNURADIO_BCD_VERSION
"(${Gnuradio_VERSION_MAJOR} / 10) << 20 |
(${Gnuradio_VERSION_MAJOR} % 10) << 16 |
(${Gnuradio_VERSION_MINOR} / 10) << 12 |
(${Gnuradio_VERSION_MINOR} % 10) << 8 |
(${Gnuradio_VERSION_PATCH} / 10) << 4 |
(${Gnuradio_VERSION_PATCH} % 10) << 0
"
)
add_definitions(-DGNURADIO_VERSION=${GNURADIO_BCD_VERSION})
2019-10-06 23:05:15 +00:00
if(Gnuradio_VERSION VERSION_LESS "3.8")
find_package(Boost COMPONENTS system REQUIRED)
2019-10-06 23:05:15 +00:00
endif()
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux|FreeBSD")
2015-12-21 22:04:59 +00:00
if(NOT LINUX_AUDIO_BACKEND)
2018-03-13 23:19:45 +00:00
set(LINUX_AUDIO_BACKEND Pulseaudio CACHE STRING "Choose the audio backend, options are: Pulseaudio, Portaudio, Gr-audio" FORCE)
2015-12-21 22:04:59 +00:00
endif()
2015-12-21 22:04:59 +00:00
if(${LINUX_AUDIO_BACKEND} MATCHES "Pulseaudio")
message(STATUS "Pulseaudio backend enabled")
find_package(PulseAudio REQUIRED)
# there is a defect in the pulse audio cmake file that does not include this library. So we add it here.
find_library(PULSE-SIMPLE NAMES pulse-simple REQUIRED)
2015-12-21 22:04:59 +00:00
add_definitions(-DWITH_PULSEAUDIO)
unset(PORTAUDIO_INCLUDE_DIRS CACHE)
unset(PORTAUDIO_LIBRARIES CACHE)
elseif(${LINUX_AUDIO_BACKEND} MATCHES "Portaudio")
message(STATUS "Portaudio backend enabled")
2020-06-07 20:12:39 +00:00
if(Gnuradio_VERSION VERSION_LESS "3.8")
find_package(Portaudio REQUIRED)
else()
find_package(PORTAUDIO REQUIRED)
endif()
add_definitions(-DWITH_PORTAUDIO)
unset(PULSEAUDIO_FOUND CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_LIBRARY CACHE)
unset(PulseAudio_DIR CACHE)
unset(PULSE-SIMPLE CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_MAINLOOP_LIBRARY CACHE)
2015-12-21 22:04:59 +00:00
elseif(${LINUX_AUDIO_BACKEND} MATCHES "Gr-audio")
message(STATUS "Gr-audio backend enabled")
2015-12-21 22:04:59 +00:00
unset(PULSEAUDIO_FOUND CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_LIBRARY CACHE)
unset(PulseAudio_DIR CACHE)
unset(PULSE-SIMPLE CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_MAINLOOP_LIBRARY CACHE)
unset(PORTAUDIO_INCLUDE_DIRS CACHE)
unset(PORTAUDIO_LIBRARIES CACHE)
2015-12-21 22:04:59 +00:00
else()
message(FATAL_ERROR "Invalid audio backend: should be either Pulseaudio, Portaudio or Gr-audio")
2015-12-21 22:04:59 +00:00
endif()
endif()
2015-11-11 14:32:48 +00:00
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
if(NOT OSX_AUDIO_BACKEND)
set(OSX_AUDIO_BACKEND Portaudio CACHE STRING "Choose the audio backend, options are: Portaudio and Gr-audio" FORCE)
endif()
if(${OSX_AUDIO_BACKEND} MATCHES "Portaudio")
2020-12-15 13:23:21 +00:00
message(STATUS "Portaudio backend enabled")
if(Gnuradio_VERSION VERSION_LESS "3.8")
find_package(Portaudio REQUIRED)
else()
find_package(PORTAUDIO REQUIRED)
endif()
add_definitions(-DWITH_PORTAUDIO)
unset(PULSEAUDIO_FOUND CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_LIBRARY CACHE)
unset(PulseAudio_DIR CACHE)
unset(PULSE-SIMPLE CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_MAINLOOP_LIBRARY CACHE)
elseif(${OSX_AUDIO_BACKEND} MATCHES "Gr-audio")
2020-12-15 13:23:21 +00:00
message(STATUS "Gr-audio backend enabled")
unset(PULSEAUDIO_FOUND CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_LIBRARY CACHE)
unset(PulseAudio_DIR CACHE)
unset(PULSE-SIMPLE CACHE)
unset(PULSEAUDIO_INCLUDE_DIR CACHE)
unset(PULSEAUDIO_MAINLOOP_LIBRARY CACHE)
unset(PORTAUDIO_INCLUDE_DIRS CACHE)
unset(PORTAUDIO_LIBRARIES CACHE)
else()
message(FATAL_ERROR "Invalid audio backend: should be either Portaudio or Gr-audio")
endif()
endif()
# Airspy optimizations that require modified gr-osmosdr
option(CUSTOM_AIRSPY_KERNELS "Enable non-standard Airspy optimizations" ON)
if(CUSTOM_AIRSPY_KERNELS)
add_definitions(-DCUSTOM_AIRSPY_KERNELS)
endif(CUSTOM_AIRSPY_KERNELS)
2015-11-11 14:32:48 +00:00
# Tell CMake to run moc when necessary:
set(CMAKE_AUTOMOC ON)
# As moc files are generated in the binary dir, tell CMake to always look for includes there:
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Finish configuring compiler / linker settings & flags
include_directories(
${CMAKE_SOURCE_DIR}/include
${Boost_INCLUDE_DIRS}
${GNURADIO_RUNTIME_INCLUDE_DIRS}
${GNURADIO_OSMOSDR_INCLUDE_DIRS}
)
link_directories(
${Boost_LIBRARY_DIRS}
${GNURADIO_RUNTIME_LIBRARY_DIRS}
${ICU4C_LIBRARY_DIRS}
)
2015-11-11 14:32:48 +00:00
# Add subdirectories
add_subdirectory(src)
# uninstall target
# https://cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
IMMEDIATE @ONLY)
add_custom_target(uninstall
${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
)