discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GNU Radio 3.9 OOT derived class


From: Vasil Velichkov
Subject: Re: GNU Radio 3.9 OOT derived class
Date: Thu, 22 Apr 2021 18:13:31 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]