1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-18 08:05:17 +00:00

Do not fail if gr-zeromq is not present. Make CI jobs happy.

This commit is contained in:
Carles Fernandez
2023-01-30 09:15:43 +01:00
parent d644f7aba8
commit d350677772
3 changed files with 98 additions and 3 deletions

View File

@@ -95,9 +95,13 @@ auto ZmqSignalSource::get_right_block() -> gr::basic_block_sptr
auto result = gr::basic_block_sptr();
if (d_vec_block)
result = d_vec_block; // NOLINT
{
result = d_vec_block;
}
else
result = d_source_block; // NOLINT
{
result = d_source_block;
}
return result;
}