mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 01:18:38 -05:00
Build M17 for Linux only
This commit is contained in:
parent
528c28b0a8
commit
a65c9458ed
@ -1,3 +1,9 @@
|
||||
sdrangel (7.5.1-1) unstable; urgency=medium
|
||||
|
||||
* M17 is for Linux only
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Mon, 18 Jul 2022 13:22:31 +0200
|
||||
|
||||
sdrangel (7.5.0-1) unstable; urgency=medium
|
||||
|
||||
* M17 mode implementation (mod and demod plugins). Issue #1259
|
||||
|
@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "7")
|
||||
set(sdrangel_VERSION_MINOR "5")
|
||||
set(sdrangel_VERSION_PATCH "0")
|
||||
set(sdrangel_VERSION_PATCH "1")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
# SDRAngel cmake options
|
||||
@ -548,7 +548,10 @@ add_subdirectory(qrtplib)
|
||||
add_subdirectory(swagger)
|
||||
add_subdirectory(devices)
|
||||
add_subdirectory(sdrbench)
|
||||
add_subdirectory(modems)
|
||||
|
||||
if (LINUX)
|
||||
add_subdirectory(modems)
|
||||
endif()
|
||||
|
||||
if (BUILD_GUI)
|
||||
add_subdirectory(sdrgui)
|
||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
sdrangel (7.5.1-1) unstable; urgency=medium
|
||||
|
||||
* M17 is for Linux only
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Mon, 18 Jul 2022 13:22:31 +0200
|
||||
|
||||
sdrangel (7.5.0-1) unstable; urgency=medium
|
||||
|
||||
* M17 mode implementation (mod and demod plugins). Issue #1259
|
||||
|
@ -93,7 +93,7 @@ if (ENABLE_CHANNELRX_DEMODFREEDV AND CODEC2_FOUND)
|
||||
add_subdirectory(demodfreedv)
|
||||
endif()
|
||||
|
||||
if (ENABLE_CHANNELRX_DEMODM17 AND CODEC2_FOUND)
|
||||
if (LINUX AND ENABLE_CHANNELRX_DEMODM17 AND CODEC2_FOUND)
|
||||
add_subdirectory(demodm17)
|
||||
endif()
|
||||
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
<h2>Introduction</h2>
|
||||
|
||||
This plugin is available only on Linux.
|
||||
|
||||
This plugin demodulates and decodes transmissions made in the [M17 protocol](https://spec.m17project.org/) M17 is a fully Open Source and Open Source audio codec based project (Codec2) for FM based digital voice amateur radio. More information is available [here](https://m17project.org/)
|
||||
|
||||
<h2>Main interface</h2>
|
||||
|
@ -63,6 +63,6 @@ if (ENABLE_CHANNELTX_MODFREEDV AND CODEC2_FOUND)
|
||||
add_subdirectory(modfreedv)
|
||||
endif()
|
||||
|
||||
if (ENABLE_CHANNELTX_MODM17 AND CODEC2_FOUND)
|
||||
if (LINUX AND ENABLE_CHANNELTX_MODM17 AND CODEC2_FOUND)
|
||||
add_subdirectory(modm17)
|
||||
endif()
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
<h2>Introduction</h2>
|
||||
|
||||
This plugin is available only on Linux.
|
||||
|
||||
This plugin encodes and modulates transmissions made in the [M17 protocol](https://spec.m17project.org/). M17 is a fully Open Source and Open Source audio codec based project (Codec2) for FM based digital voice amateur radio. More information is available [here](https://m17project.org/)
|
||||
|
||||
<h2>Main interface</h2>
|
||||
|
Loading…
Reference in New Issue
Block a user