Re: OOT modules config for versions

2023-06-12 Thread Ali G. Dezfuli
YOU REALLY SAVED MY LIFE Ron! On Mon, Jun 12, 2023 at 11:28 AM Ron Economos wrote: > You just use find_package() now. Here's an example: > > https://github.com/drmpeg/gr-atsc3/blob/master/CMakeLists.txt#L77 > > You also have to link to the modules in lib/CMakeLists.txt. Like so: > > https://gith

Re: OOT modules config for versions

2023-06-12 Thread Ron Economos
You just use find_package() now. Here's an example: https://github.com/drmpeg/gr-atsc3/blob/master/CMakeLists.txt#L77 You also have to link to the modules in lib/CMakeLists.txt. Like so: https://github.com/drmpeg/gr-atsc3/blob/master/lib/CMakeLists.txt#L42 Ron On 6/12/23 00:01, Ali G. Dezfuli

OOT modules config for versions

2023-06-12 Thread Ali G. Dezfuli
Hi all, I'd like to use libgnuradio-filter in my OOT module/blocks. I've read the following link which is about configuring OOT modules for adding other parts of gnuradio: https://wiki.gnuradio.org/index.php/OutOfTreeModulesConfig I couldn't find the line: set(GR_REQUIRED_COMPONENTS RUNTIME) in