Thursday, April 22, 2021

Re: GNU Radio 3.9 OOT derived class

Hi Alvaro,

On 22/04/2021 17.48, Alvaro Pendas Recondo wrote:
> 6. Add the line set(GR_REQUIRED_COMPONENTS RUNTIME DIGITAL) at
> gr-TFMv3/CMakeLists.txt

The GR_REQUIRED_COMPONENTS is no longer used in GNU Radio 3.8 and 3.9. You need to add "digital" in the Gnuradio's find_package list and then link your OOT module with gnuradio::gnuradio-digital. It should be something similar to:

find_package(Gnuradio "3.8" REQUIRED COMPONENTS digital)
target_link_libraries(gnuradio-TFMv3 gnuradio::gnuradio-digital)

See https://wiki.gnuradio.org/index.php/GNU_Radio_3.8_OOT_Module_Porting_Guide#GNU_Radio_Components

Regards,
Vasil

No comments:

Post a Comment