From 933af79833a0d5a44f479ba6b68a390a10d5e7c0 Mon Sep 17 00:00:00 2001 From: Tom Rondeau Date: Mon, 10 Dec 2012 15:52:13 -0500 Subject: core: Fixed install rules for GRC files in these examples. --- gnuradio-core/src/examples/msg_passing/CMakeLists.txt | 3 ++- gnuradio-core/src/examples/pfb/CMakeLists.txt | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'gnuradio-core') diff --git a/gnuradio-core/src/examples/msg_passing/CMakeLists.txt b/gnuradio-core/src/examples/msg_passing/CMakeLists.txt index d73618f89..c4b207a1e 100644 --- a/gnuradio-core/src/examples/msg_passing/CMakeLists.txt +++ b/gnuradio-core/src/examples/msg_passing/CMakeLists.txt @@ -19,7 +19,8 @@ include(GrPython) -GR_PYTHON_INSTALL(PROGRAMS +install( + FILES strobe.grc DESTINATION ${GR_PKG_DATA_DIR}/examples/msg_passing COMPONENT "core_python" diff --git a/gnuradio-core/src/examples/pfb/CMakeLists.txt b/gnuradio-core/src/examples/pfb/CMakeLists.txt index 6bb25568c..090b2401d 100644 --- a/gnuradio-core/src/examples/pfb/CMakeLists.txt +++ b/gnuradio-core/src/examples/pfb/CMakeLists.txt @@ -25,7 +25,6 @@ GR_PYTHON_INSTALL(PROGRAMS decimate.py fmtest.py interpolate.py - resampler_demo.grc resampler.py synth_filter.py synth_to_chan.py @@ -34,3 +33,9 @@ GR_PYTHON_INSTALL(PROGRAMS COMPONENT "core_python" ) +install( + FILES + resampler_demo.grc + DESTINATION ${GR_PKG_DATA_DIR}/examples/pfb + COMPONENT "core_python" +) -- cgit