2021-04-26 17:03:52 +02:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-10-24 15:33:00 +02:00
|
|
|
project(sdrpp)
|
2020-06-10 04:13:56 +02:00
|
|
|
|
2022-01-29 20:35:08 +01:00
|
|
|
# Backends
|
|
|
|
option(OPT_BACKEND_GLFW "Use the GLFW backend" ON)
|
2022-02-13 17:25:23 +01:00
|
|
|
option(OPT_BACKEND_ANDROID "Use the Android backend" OFF)
|
2022-01-29 20:35:08 +01:00
|
|
|
|
2021-08-16 18:49:00 +02:00
|
|
|
# Compatibility Options
|
|
|
|
option(OPT_OVERRIDE_STD_FILESYSTEM "Use a local version of std::filesystem on systems that don't have it yet" OFF)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
# Sources
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_AIRSPY_SOURCE "Build Airspy Source Module (Dependencies: libairspy)" ON)
|
|
|
|
option(OPT_BUILD_AIRSPYHF_SOURCE "Build Airspy HF+ Source Module (Dependencies: libairspyhf)" ON)
|
|
|
|
option(OPT_BUILD_BLADERF_SOURCE "Build BladeRF Source Module (Dependencies: libbladeRF)" OFF)
|
2021-06-28 02:22:51 +02:00
|
|
|
option(OPT_BUILD_FILE_SOURCE "Wav file source" ON)
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_HACKRF_SOURCE "Build HackRF Source Module (Dependencies: libhackrf)" ON)
|
2022-10-18 11:09:22 +02:00
|
|
|
option(OPT_BUILD_HERMES_SOURCE "Build Hermes Source Module (no dependencies required)" ON)
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_LIMESDR_SOURCE "Build LimeSDR Source Module (Dependencies: liblimesuite)" OFF)
|
2022-01-21 20:22:13 +01:00
|
|
|
option(OPT_BUILD_SDRPP_SERVER_SOURCE "Build SDR++ Server Source Module (no dependencies required)" ON)
|
2022-01-01 05:27:10 +01:00
|
|
|
option(OPT_BUILD_RFSPACE_SOURCE "Build RFspace Source Module (no dependencies required)" ON)
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_RTL_SDR_SOURCE "Build RTL-SDR Source Module (Dependencies: librtlsdr)" ON)
|
2021-06-28 02:22:51 +02:00
|
|
|
option(OPT_BUILD_RTL_TCP_SOURCE "Build RTL-TCP Source Module (no dependencies required)" ON)
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_SDRPLAY_SOURCE "Build SDRplay Source Module (Dependencies: libsdrplay)" OFF)
|
|
|
|
option(OPT_BUILD_SOAPY_SOURCE "Build SoapySDR Source Module (Dependencies: soapysdr)" ON)
|
2022-12-06 08:23:58 +01:00
|
|
|
option(OPT_BUILD_SPECTRAN_SOURCE "Build Spectran Source Module (Dependencies: Aaronia RTSA Suite)" OFF)
|
2022-12-04 02:10:34 +01:00
|
|
|
option(OPT_BUILD_SPECTRAN_HTTP_SOURCE "Build Spectran HTTP Source Module (no dependencies required)" ON)
|
2021-07-19 04:52:13 +02:00
|
|
|
option(OPT_BUILD_SPYSERVER_SOURCE "Build SpyServer Source Module (no dependencies required)" ON)
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_PLUTOSDR_SOURCE "Build PlutoSDR Source Module (Dependencies: libiio, libad9361)" ON)
|
2022-10-23 16:41:45 +02:00
|
|
|
option(OPT_BUILD_USRP_SOURCE "Build USRP Source Module (libuhd)" OFF)
|
2021-06-28 02:22:51 +02:00
|
|
|
|
|
|
|
# Sinks
|
2022-02-13 17:25:23 +01:00
|
|
|
option(OPT_BUILD_ANDROID_AUDIO_SINK "Build Android Audio Sink Module (Dependencies: AAudio, only for android)" OFF)
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_AUDIO_SINK "Build Audio Sink Module (Dependencies: rtaudio)" ON)
|
|
|
|
option(OPT_BUILD_PORTAUDIO_SINK "Build PortAudio Sink Module (Dependencies: portaudio)" OFF)
|
2021-07-30 21:56:34 +02:00
|
|
|
option(OPT_BUILD_NETWORK_SINK "Build Audio Sink Module (no dependencies required)" ON)
|
2021-09-20 19:59:35 +02:00
|
|
|
option(OPT_BUILD_NEW_PORTAUDIO_SINK "Build the new PortAudio Sink Module (Dependencies: portaudio)" OFF)
|
2021-06-28 02:22:51 +02:00
|
|
|
|
|
|
|
# Decoders
|
2022-12-04 02:10:34 +01:00
|
|
|
option(OPT_BUILD_ATV_DECODER "Build ATV decoder (no dependencies required)" OFF)
|
2021-04-10 03:06:51 +02:00
|
|
|
option(OPT_BUILD_FALCON9_DECODER "Build the falcon9 live decoder (Dependencies: ffplay)" OFF)
|
2022-12-26 02:57:57 +01:00
|
|
|
option(OPT_BUILD_KG_SSTV_DECODER "Build the KG SSTV (KG-STV) decoder module (no dependencies required)" OFF)
|
2022-07-02 16:53:09 +02:00
|
|
|
option(OPT_BUILD_M17_DECODER "Build the M17 decoder module (Dependencies: codec2)" OFF)
|
|
|
|
option(OPT_BUILD_METEOR_DEMODULATOR "Build the meteor demodulator module (no dependencies required)" ON)
|
2021-06-28 02:22:51 +02:00
|
|
|
option(OPT_BUILD_RADIO "Main audio modulation decoder (AM, FM, SSB, etc...)" ON)
|
2021-11-18 22:26:25 +01:00
|
|
|
option(OPT_BUILD_WEATHER_SAT_DECODER "Build the HRPT decoder module (no dependencies required)" OFF)
|
2021-06-28 02:22:51 +02:00
|
|
|
|
|
|
|
# Misc
|
2021-04-22 01:19:36 +02:00
|
|
|
option(OPT_BUILD_DISCORD_PRESENCE "Build the Discord Rich Presence module" ON)
|
2021-07-03 19:46:21 +02:00
|
|
|
option(OPT_BUILD_FREQUENCY_MANAGER "Build the Frequency Manager module" ON)
|
2021-06-28 02:22:51 +02:00
|
|
|
option(OPT_BUILD_RECORDER "Audio and baseband recorder" ON)
|
2022-10-11 17:43:20 +02:00
|
|
|
option(OPT_BUILD_RIGCTL_CLIENT "Rigctl client to make SDR++ act as a panadapter" OFF)
|
2021-07-16 01:49:33 +02:00
|
|
|
option(OPT_BUILD_RIGCTL_SERVER "Rigctl backend for controlling SDR++ with software like gpredict" ON)
|
2022-08-30 16:07:49 +02:00
|
|
|
option(OPT_BUILD_SCANNER "Frequency scanner" ON)
|
2021-11-14 18:30:58 +01:00
|
|
|
option(OPT_BUILD_SCHEDULER "Build the scheduler" OFF)
|
2021-06-28 02:22:51 +02:00
|
|
|
|
2021-10-28 10:05:31 +02:00
|
|
|
# Other options
|
2022-02-24 20:49:53 +01:00
|
|
|
option(USE_INTERNAL_LIBCORRECT "Use an internal version of libcorrect" ON)
|
2021-11-17 22:37:21 +01:00
|
|
|
option(USE_BUNDLE_DEFAULTS "Set the default resource and module directories to the right ones for a MacOS .app" OFF)
|
2021-10-28 10:05:31 +02:00
|
|
|
|
2023-02-14 16:25:05 +01:00
|
|
|
# Module cmake path
|
|
|
|
set(SDRPP_MODULE_CMAKE "${CMAKE_SOURCE_DIR}/sdrpp_module.cmake")
|
|
|
|
|
|
|
|
# Root source folder
|
|
|
|
set(SDRPP_CORE_ROOT "${CMAKE_SOURCE_DIR}/core/src/")
|
|
|
|
|
|
|
|
# Compiler flags
|
2023-02-15 20:37:13 +01:00
|
|
|
if (${CMAKE_BUILD_TYPE} MATCHES "Debug")
|
|
|
|
# Debug Flags
|
|
|
|
if (MSVC)
|
|
|
|
set(SDRPP_COMPILER_FLAGS /std:c++17 /EHsc)
|
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
set(SDRPP_COMPILER_FLAGS -g -Og -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
|
|
|
else ()
|
|
|
|
set(SDRPP_COMPILER_FLAGS -g -Og -std=c++17)
|
|
|
|
endif ()
|
|
|
|
else()
|
|
|
|
# Normal Flags
|
|
|
|
if (MSVC)
|
|
|
|
set(SDRPP_COMPILER_FLAGS /O2 /Ob2 /std:c++17 /EHsc)
|
|
|
|
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
|
|
set(SDRPP_COMPILER_FLAGS -O3 -std=c++17 -Wno-unused-command-line-argument -undefined dynamic_lookup)
|
|
|
|
else ()
|
|
|
|
set(SDRPP_COMPILER_FLAGS -O3 -std=c++17)
|
|
|
|
endif ()
|
|
|
|
endif()
|
|
|
|
set(SDRPP_MODULE_COMPILER_FLAGS ${SDRPP_COMPILER_FLAGS})
|
2023-02-14 16:25:05 +01:00
|
|
|
|
|
|
|
# Set a default install prefix
|
|
|
|
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
|
|
|
else()
|
|
|
|
set(CMAKE_INSTALL_PREFIX "/usr")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Configure toolchain for android
|
|
|
|
if (ANDROID)
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS
|
|
|
|
"${CMAKE_SHARED_LINKER_FLAGS} -u ANativeActivity_onCreate"
|
|
|
|
)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
|
|
set(CMAKE_CXX14_EXTENSION_COMPILE_OPTION "-std=c++17")
|
|
|
|
endif (ANDROID)
|
|
|
|
|
2021-10-03 17:48:32 +02:00
|
|
|
# Core of SDR++
|
|
|
|
add_subdirectory("core")
|
|
|
|
|
2020-12-22 14:50:26 +01:00
|
|
|
# Source modules
|
2021-06-28 02:22:51 +02:00
|
|
|
if (OPT_BUILD_AIRSPY_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/airspy_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_AIRSPY_SOURCE)
|
2020-12-22 14:50:26 +01:00
|
|
|
|
|
|
|
if (OPT_BUILD_AIRSPYHF_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/airspyhf_source")
|
2020-12-22 14:50:26 +01:00
|
|
|
endif (OPT_BUILD_AIRSPYHF_SOURCE)
|
|
|
|
|
2021-03-20 21:53:44 +01:00
|
|
|
if (OPT_BUILD_BLADERF_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/bladerf_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_BLADERF_SOURCE)
|
2021-03-20 21:53:44 +01:00
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
if (OPT_BUILD_FILE_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/file_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_FILE_SOURCE)
|
2020-12-22 14:50:26 +01:00
|
|
|
|
2020-12-26 00:42:15 +01:00
|
|
|
if (OPT_BUILD_HACKRF_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/hackrf_source")
|
2020-12-26 00:42:15 +01:00
|
|
|
endif (OPT_BUILD_HACKRF_SOURCE)
|
|
|
|
|
2022-10-18 11:09:22 +02:00
|
|
|
if (OPT_BUILD_HERMES_SOURCE)
|
|
|
|
add_subdirectory("source_modules/hermes_source")
|
|
|
|
endif (OPT_BUILD_HERMES_SOURCE)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
if (OPT_BUILD_LIMESDR_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/limesdr_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_LIMESDR_SOURCE)
|
2021-02-13 20:43:29 +01:00
|
|
|
|
2022-01-21 20:22:13 +01:00
|
|
|
if (OPT_BUILD_SDRPP_SERVER_SOURCE)
|
|
|
|
add_subdirectory("source_modules/sdrpp_server_source")
|
|
|
|
endif (OPT_BUILD_SDRPP_SERVER_SOURCE)
|
|
|
|
|
2021-11-09 00:00:13 +01:00
|
|
|
if (OPT_BUILD_RFSPACE_SOURCE)
|
|
|
|
add_subdirectory("source_modules/rfspace_source")
|
|
|
|
endif (OPT_BUILD_RFSPACE_SOURCE)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
if (OPT_BUILD_RTL_SDR_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/rtl_sdr_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_RTL_SDR_SOURCE)
|
|
|
|
|
|
|
|
if (OPT_BUILD_RTL_TCP_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/rtl_tcp_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_RTL_TCP_SOURCE)
|
|
|
|
|
|
|
|
if (OPT_BUILD_SDRPLAY_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/sdrplay_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_SDRPLAY_SOURCE)
|
|
|
|
|
|
|
|
if (OPT_BUILD_SOAPY_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/soapy_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_SOAPY_SOURCE)
|
|
|
|
|
2022-12-06 08:23:58 +01:00
|
|
|
if (OPT_BUILD_SPECTRAN_SOURCE)
|
|
|
|
add_subdirectory("source_modules/spectran_source")
|
|
|
|
endif (OPT_BUILD_SPECTRAN_SOURCE)
|
|
|
|
|
2022-12-04 02:10:34 +01:00
|
|
|
if (OPT_BUILD_SPECTRAN_HTTP_SOURCE)
|
|
|
|
add_subdirectory("source_modules/spectran_http_source")
|
|
|
|
endif (OPT_BUILD_SPECTRAN_HTTP_SOURCE)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
if (OPT_BUILD_SPYSERVER_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/spyserver_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_SPYSERVER_SOURCE)
|
|
|
|
|
|
|
|
if (OPT_BUILD_PLUTOSDR_SOURCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("source_modules/plutosdr_source")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_PLUTOSDR_SOURCE)
|
|
|
|
|
2022-10-23 16:41:45 +02:00
|
|
|
if (OPT_BUILD_USRP_SOURCE)
|
|
|
|
add_subdirectory("source_modules/usrp_source")
|
|
|
|
endif (OPT_BUILD_USRP_SOURCE)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
|
|
|
|
# Sink modules
|
2022-02-13 17:25:23 +01:00
|
|
|
if (OPT_BUILD_ANDROID_AUDIO_SINK)
|
|
|
|
add_subdirectory("sink_modules/android_audio_sink")
|
|
|
|
endif (OPT_BUILD_ANDROID_AUDIO_SINK)
|
|
|
|
|
2020-12-22 14:50:26 +01:00
|
|
|
if (OPT_BUILD_AUDIO_SINK)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("sink_modules/audio_sink")
|
2020-12-22 14:50:26 +01:00
|
|
|
endif (OPT_BUILD_AUDIO_SINK)
|
2020-09-06 15:39:09 +02:00
|
|
|
|
2021-06-29 18:14:26 +02:00
|
|
|
if (OPT_BUILD_PORTAUDIO_SINK)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("sink_modules/portaudio_sink")
|
2021-06-29 18:14:26 +02:00
|
|
|
endif (OPT_BUILD_PORTAUDIO_SINK)
|
|
|
|
|
2021-07-30 21:56:34 +02:00
|
|
|
if (OPT_BUILD_NETWORK_SINK)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("sink_modules/network_sink")
|
2021-07-30 21:56:34 +02:00
|
|
|
endif (OPT_BUILD_NETWORK_SINK)
|
|
|
|
|
2021-07-17 19:43:44 +02:00
|
|
|
if (OPT_BUILD_NEW_PORTAUDIO_SINK)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("sink_modules/new_portaudio_sink")
|
2021-07-17 19:43:44 +02:00
|
|
|
endif (OPT_BUILD_NEW_PORTAUDIO_SINK)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
|
|
|
|
# Decoders
|
2022-12-04 02:10:34 +01:00
|
|
|
if (OPT_BUILD_ATV_DECODER)
|
|
|
|
add_subdirectory("decoder_modules/atv_decoder")
|
|
|
|
endif (OPT_BUILD_ATV_DECODER)
|
|
|
|
|
2021-03-21 19:51:38 +01:00
|
|
|
if (OPT_BUILD_FALCON9_DECODER)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("decoder_modules/falcon9_decoder")
|
2021-03-21 19:51:38 +01:00
|
|
|
endif (OPT_BUILD_FALCON9_DECODER)
|
|
|
|
|
2022-02-24 20:49:53 +01:00
|
|
|
if (OPT_BUILD_KG_SSTV_DECODER)
|
|
|
|
add_subdirectory("decoder_modules/kg_sstv_decoder")
|
|
|
|
endif (OPT_BUILD_KG_SSTV_DECODER)
|
|
|
|
|
2021-09-27 03:42:26 +02:00
|
|
|
if (OPT_BUILD_M17_DECODER)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("decoder_modules/m17_decoder")
|
2021-09-27 03:42:26 +02:00
|
|
|
endif (OPT_BUILD_M17_DECODER)
|
|
|
|
|
2021-04-01 16:54:16 +02:00
|
|
|
if (OPT_BUILD_METEOR_DEMODULATOR)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("decoder_modules/meteor_demodulator")
|
2021-04-01 16:54:16 +02:00
|
|
|
endif (OPT_BUILD_METEOR_DEMODULATOR)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
if (OPT_BUILD_RADIO)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("decoder_modules/radio")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_RADIO)
|
|
|
|
|
2021-04-10 03:06:51 +02:00
|
|
|
if (OPT_BUILD_WEATHER_SAT_DECODER)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("decoder_modules/weather_sat_decoder")
|
2021-04-10 03:06:51 +02:00
|
|
|
endif (OPT_BUILD_WEATHER_SAT_DECODER)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
|
|
|
|
# Misc
|
2021-04-20 02:58:47 +02:00
|
|
|
if (OPT_BUILD_DISCORD_PRESENCE)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("misc_modules/discord_integration")
|
2021-04-20 02:58:47 +02:00
|
|
|
endif (OPT_BUILD_DISCORD_PRESENCE)
|
|
|
|
|
2021-05-12 06:03:31 +02:00
|
|
|
if (OPT_BUILD_FREQUENCY_MANAGER)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("misc_modules/frequency_manager")
|
2021-05-12 06:03:31 +02:00
|
|
|
endif (OPT_BUILD_FREQUENCY_MANAGER)
|
|
|
|
|
2021-06-28 02:22:51 +02:00
|
|
|
if (OPT_BUILD_RECORDER)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("misc_modules/recorder")
|
2021-06-28 02:22:51 +02:00
|
|
|
endif (OPT_BUILD_RECORDER)
|
|
|
|
|
2022-09-28 15:55:50 +02:00
|
|
|
if (OPT_BUILD_RIGCTL_CLIENT)
|
|
|
|
add_subdirectory("misc_modules/rigctl_client")
|
|
|
|
endif (OPT_BUILD_RIGCTL_CLIENT)
|
|
|
|
|
2021-07-16 01:49:33 +02:00
|
|
|
if (OPT_BUILD_RIGCTL_SERVER)
|
2021-10-03 16:50:36 +02:00
|
|
|
add_subdirectory("misc_modules/rigctl_server")
|
2021-07-16 01:49:33 +02:00
|
|
|
endif (OPT_BUILD_RIGCTL_SERVER)
|
|
|
|
|
2021-11-11 17:09:37 +01:00
|
|
|
if (OPT_BUILD_SCANNER)
|
|
|
|
add_subdirectory("misc_modules/scanner")
|
|
|
|
endif (OPT_BUILD_SCANNER)
|
|
|
|
|
2021-11-14 18:30:58 +01:00
|
|
|
if (OPT_BUILD_SCHEDULER)
|
|
|
|
add_subdirectory("misc_modules/scheduler")
|
|
|
|
endif (OPT_BUILD_SCHEDULER)
|
|
|
|
|
2021-10-04 04:00:06 +02:00
|
|
|
add_executable(sdrpp "src/main.cpp" "win32/resources.rc")
|
|
|
|
target_link_libraries(sdrpp PRIVATE sdrpp_core)
|
|
|
|
|
2023-02-14 16:25:05 +01:00
|
|
|
# Compiler arguments
|
2023-02-15 20:37:13 +01:00
|
|
|
target_compile_options(sdrpp PRIVATE ${SDRPP_COMPILER_FLAGS})
|
2022-06-23 22:25:39 +02:00
|
|
|
|
2020-09-19 12:48:34 +02:00
|
|
|
# Copy dynamic libs over
|
2020-08-16 03:39:05 +02:00
|
|
|
if (MSVC)
|
2020-09-19 12:48:34 +02:00
|
|
|
add_custom_target(do_always ALL xcopy /s \"$<TARGET_FILE_DIR:sdrpp_core>\\*.dll\" \"$<TARGET_FILE_DIR:sdrpp>\" /Y)
|
2020-10-23 11:06:10 +02:00
|
|
|
add_custom_target(do_always_volk ALL xcopy /s \"C:/Program Files/PothosSDR/bin\\volk.dll\" \"$<TARGET_FILE_DIR:sdrpp>\" /Y)
|
2021-04-18 19:12:07 +02:00
|
|
|
endif ()
|
2020-07-19 15:59:44 +02:00
|
|
|
|
2022-06-23 22:25:39 +02:00
|
|
|
|
2020-10-24 17:09:25 +02:00
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD")
|
2020-10-24 17:34:18 +02:00
|
|
|
add_custom_target(do_always ALL cp \"$<TARGET_FILE_DIR:sdrpp_core>/libsdrpp_core.so\" \"$<TARGET_FILE_DIR:sdrpp>\")
|
2020-10-24 17:09:25 +02:00
|
|
|
endif ()
|
|
|
|
|
2021-02-17 16:59:30 +01:00
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
|
|
|
target_link_libraries(sdrpp PUBLIC pthread)
|
|
|
|
add_custom_target(do_always ALL cp \"$<TARGET_FILE_DIR:sdrpp_core>/libsdrpp_core.so\" \"$<TARGET_FILE_DIR:sdrpp>\")
|
|
|
|
endif ()
|
|
|
|
|
2020-10-22 02:28:43 +02:00
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
2020-10-24 17:34:18 +02:00
|
|
|
add_custom_target(do_always ALL cp \"$<TARGET_FILE_DIR:sdrpp_core>/libsdrpp_core.so\" \"$<TARGET_FILE_DIR:sdrpp>\")
|
2020-10-22 02:28:43 +02:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
2020-10-24 17:34:18 +02:00
|
|
|
add_custom_target(do_always ALL cp \"$<TARGET_FILE_DIR:sdrpp_core>/libsdrpp_core.dylib\" \"$<TARGET_FILE_DIR:sdrpp>\")
|
2020-10-22 02:28:43 +02:00
|
|
|
endif ()
|
|
|
|
|
2022-10-23 16:41:45 +02:00
|
|
|
# cmake .. "-DCMAKE_TOOLCHAIN_FILE=C:/dev/vcpkg/scripts/buildsystems/vcpkg.cmake" -DOPT_BUILD_BLADERF_SOURCE=ON -DOPT_BUILD_LIMESDR_SOURCE=ON -DOPT_BUILD_SDRPLAY_SOURCE=ON -DOPT_BUILD_M17_DECODER=ON -DOPT_BUILD_SCANNER=ON -DOPT_BUILD_SCHEDULER=ON -DOPT_BUILD_USRP_SOURCE=ON
|
2021-02-11 22:49:33 +01:00
|
|
|
|
2023-02-14 16:25:05 +01:00
|
|
|
# Create module cmake file
|
|
|
|
configure_file(${CMAKE_SOURCE_DIR}/sdrpp_module.cmake ${CMAKE_CURRENT_BINARY_DIR}/sdrpp_module.cmake @ONLY)
|
|
|
|
|
2021-02-11 22:49:33 +01:00
|
|
|
# Install directives
|
|
|
|
install(TARGETS sdrpp DESTINATION bin)
|
|
|
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/root/res/bandplans DESTINATION share/sdrpp)
|
|
|
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/root/res/colormaps DESTINATION share/sdrpp)
|
|
|
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/root/res/fonts DESTINATION share/sdrpp)
|
|
|
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/root/res/icons DESTINATION share/sdrpp)
|
2021-06-24 03:23:30 +02:00
|
|
|
install(DIRECTORY ${CMAKE_SOURCE_DIR}/root/res/themes DESTINATION share/sdrpp)
|
2021-02-12 00:03:30 +01:00
|
|
|
configure_file(${CMAKE_SOURCE_DIR}/sdrpp.desktop ${CMAKE_CURRENT_BINARY_DIR}/sdrpp.desktop @ONLY)
|
2021-04-18 20:30:21 +02:00
|
|
|
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
2021-10-29 02:17:53 +02:00
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/sdrpp.desktop DESTINATION share/applications)
|
2021-04-18 20:30:21 +02:00
|
|
|
endif ()
|
2021-02-11 22:49:33 +01:00
|
|
|
|
|
|
|
# Create uninstall target
|
2021-02-12 00:03:30 +01:00
|
|
|
configure_file(${CMAKE_SOURCE_DIR}/cmake_uninstall.cmake ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake @ONLY)
|
2023-02-14 16:25:05 +01:00
|
|
|
add_custom_target(uninstall ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
|