From a414b75ef4f324dd9a02fa001def13afafb5aecf Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Tue, 9 Nov 2021 13:55:52 +0100 Subject: [PATCH 1/2] Fixed windows CI --- .github/workflows/build_all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 64624e9b..e2bae45e 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -36,7 +36,7 @@ jobs: run: 7z x ${{runner.workspace}}/SDRPlay.zip -o"C:/Program Files/" - name: Download codec2 - run: git clone https://github.com/drowe67/codec2 + run: git clone https://github.com/AlexandreRouma/codec2 - name: Prepare MinGW run: C:/msys64/msys2_shell.cmd -defterm -here -no-start -mingw64 -c "pacman --noconfirm -S --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja" From cca18f3a703f648b73ee6ffe5ff0644001ceaf4d Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Thu, 11 Nov 2021 17:09:37 +0100 Subject: [PATCH 2/2] More work on scanner --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e3bdee83..352bae40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,6 +44,7 @@ option(OPT_BUILD_DISCORD_PRESENCE "Build the Discord Rich Presence module" ON) option(OPT_BUILD_FREQUENCY_MANAGER "Build the Frequency Manager module" ON) option(OPT_BUILD_RECORDER "Audio and baseband recorder" ON) option(OPT_BUILD_RIGCTL_SERVER "Rigctl backend for controlling SDR++ with software like gpredict" ON) +option(OPT_BUILD_SCANNER "Frequency scanner" OFF) # Other options option(USE_INTERNAL_LIBCORRECT "Use an external version of libcorrect" ON) @@ -166,6 +167,10 @@ if (OPT_BUILD_RIGCTL_SERVER) add_subdirectory("misc_modules/rigctl_server") endif (OPT_BUILD_RIGCTL_SERVER) +if (OPT_BUILD_SCANNER) +add_subdirectory("misc_modules/scanner") +endif (OPT_BUILD_SCANNER) + add_executable(sdrpp "src/main.cpp" "win32/resources.rc") target_link_libraries(sdrpp PRIVATE sdrpp_core)