From e2009ebaefeaa429dc90eac86fb3b52f8f0a88f1 Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 19 Jun 2017 11:06:54 +0200 Subject: [PATCH] Do not compile the broadcast FM demod plugin when the host is a Raspberry Pi because of unsufficient memory --- plugins/channelrx/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/channelrx/CMakeLists.txt b/plugins/channelrx/CMakeLists.txt index 3f98bb1b2..3eb782fac 100644 --- a/plugins/channelrx/CMakeLists.txt +++ b/plugins/channelrx/CMakeLists.txt @@ -2,7 +2,9 @@ project(demod) add_subdirectory(demodlora) add_subdirectory(demodam) -add_subdirectory(demodbfm) +if (NOT HOST_RPI) + add_subdirectory(demodbfm) +endif() add_subdirectory(demodnfm) add_subdirectory(demodssb) add_subdirectory(tcpsrc)