aboutsummaryrefslogtreecommitdiffstats
path: root/gr-fft
diff options
context:
space:
mode:
authorVolker Schroer <3470424+dl1ksv@users.noreply.github.com>2021-06-04 18:00:11 +0200
committermormj <34754695+mormj@users.noreply.github.com>2021-06-21 07:48:34 -0400
commit4f2da473c30fb5149d23f1d67728c1f08c5ca17d (patch)
tree4cec4e5300674401d77a690bf3c9bd05baa347f1 /gr-fft
parentgrc: generating a simple cpp qt-gui flowgraph fails (diff)
downloadgnuradio-4f2da473c30fb5149d23f1d67728c1f08c5ca17d.tar.xz
gnuradio-4f2da473c30fb5149d23f1d67728c1f08c5ca17d.zip
rebase
grc: cpp generation set correct link entry in yml files for modern cmake. Applying this fix simple flowgraphs containing signal sources and audi sinks etc. build and run Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
Diffstat (limited to 'gr-fft')
-rw-r--r--gr-fft/grc/fft_ctrlport_probe_psd.block.yml2
-rw-r--r--gr-fft/grc/fft_fft_vxx.block.yml2
-rw-r--r--gr-fft/grc/fft_goertzel_fc.block.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/gr-fft/grc/fft_ctrlport_probe_psd.block.yml b/gr-fft/grc/fft_ctrlport_probe_psd.block.yml
index 5f6de8a9b..7e2428cbd 100644
--- a/gr-fft/grc/fft_ctrlport_probe_psd.block.yml
+++ b/gr-fft/grc/fft_ctrlport_probe_psd.block.yml
@@ -30,7 +30,7 @@ cpp_templates:
includes: [ '#include <gnuradio/fft/ctrlport_probe_psd.h>' ]
declarations: 'fft::ctrlport_probe_psd::sptr ${id};'
make: 'this->${id} = fft::ctrlport_probe_psd::make(${name}, ${desc}, ${len});'
- link: ['gnuradio-fft']
+ link: ['gnuradio::gnuradio-fft']
callbacks:
- set_length(${len})
diff --git a/gr-fft/grc/fft_fft_vxx.block.yml b/gr-fft/grc/fft_fft_vxx.block.yml
index 9ced5636b..58128cd2e 100644
--- a/gr-fft/grc/fft_fft_vxx.block.yml
+++ b/gr-fft/grc/fft_fft_vxx.block.yml
@@ -65,7 +65,7 @@ cpp_templates:
% else:
this->${id} = fft::fft_vfc::make(${fft_size}, ${forward}, ${window}, ${shift}, ${nthreads});
% endif
- link: ['gnuradio-fft']
+ link: ['gnuradio::gnuradio-fft']
callbacks:
- set_nthreads(${nthreads})
translations:
diff --git a/gr-fft/grc/fft_goertzel_fc.block.yml b/gr-fft/grc/fft_goertzel_fc.block.yml
index 5e9851f15..50c945033 100644
--- a/gr-fft/grc/fft_goertzel_fc.block.yml
+++ b/gr-fft/grc/fft_goertzel_fc.block.yml
@@ -35,7 +35,7 @@ cpp_templates:
includes: [ '#include <gnuradio/fft/goertzel_fc.h>' ]
declarations: 'fft::goertzel_fc::sptr ${id};'
make: 'this->${id} = fft::goertzel_fc::make(${rate}, ${len}, ${freq});'
- link: ['gnuradio-fft']
+ link: ['gnuradio::gnuradio-fft']
callbacks:
- set_freq(${freq})
- set_rate(${rate})