diff options
author | devnulling <devnulling@users.noreply.github.com> | 2020-01-21 21:32:55 -0800 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-01-22 10:03:43 -0500 |
commit | a964a7edbdb4dba51f46cf6b44ff84edd9637e48 (patch) | |
tree | 3f42169ea0f5fa115a28932a0ae4d286a826eaf3 /gr-blocks/examples | |
parent | 1d60888071c5ccabbe20395e76f504a6172251d9 (diff) |
examples: fixup cmake files to include all examples
Diffstat (limited to 'gr-blocks/examples')
-rw-r--r-- | gr-blocks/examples/CMakeLists.txt | 3 | ||||
-rw-r--r-- | gr-blocks/examples/ctrlport/CMakeLists.txt | 1 | ||||
-rw-r--r-- | gr-blocks/examples/msg_passing/CMakeLists.txt | 2 | ||||
-rw-r--r-- | gr-blocks/examples/tags/CMakeLists.txt | 7 |
4 files changed, 12 insertions, 1 deletions
diff --git a/gr-blocks/examples/CMakeLists.txt b/gr-blocks/examples/CMakeLists.txt index 850672e40..f016b1297 100644 --- a/gr-blocks/examples/CMakeLists.txt +++ b/gr-blocks/examples/CMakeLists.txt @@ -21,8 +21,9 @@ install( FILES matrix_multiplexer.grc peak_detector2.grc - vector_source_with_tags.grc + selector.grc test_stream_mux_tags.grc + vector_source_with_tags.grc DESTINATION ${GR_PKG_DATA_DIR}/examples/blocks ) diff --git a/gr-blocks/examples/ctrlport/CMakeLists.txt b/gr-blocks/examples/ctrlport/CMakeLists.txt index c9b39bcaa..090c01208 100644 --- a/gr-blocks/examples/ctrlport/CMakeLists.txt +++ b/gr-blocks/examples/ctrlport/CMakeLists.txt @@ -31,5 +31,6 @@ install( GR_PYTHON_INSTALL(PROGRAMS simple_copy_controller.py usrp_source_controller.py + usrp_sink_controller.py DESTINATION ${GR_PKG_DATA_DIR}/examples/ctrlport ) diff --git a/gr-blocks/examples/msg_passing/CMakeLists.txt b/gr-blocks/examples/msg_passing/CMakeLists.txt index 9965ce878..06bc88633 100644 --- a/gr-blocks/examples/msg_passing/CMakeLists.txt +++ b/gr-blocks/examples/msg_passing/CMakeLists.txt @@ -22,5 +22,7 @@ include(GrPython) install( FILES strobe.grc + hier/test_msg_hier.grc + hier/test_msg_hier_topblock.grc DESTINATION ${GR_PKG_DATA_DIR}/examples/msg_passing ) diff --git a/gr-blocks/examples/tags/CMakeLists.txt b/gr-blocks/examples/tags/CMakeLists.txt index 52cf4662b..209c2393b 100644 --- a/gr-blocks/examples/tags/CMakeLists.txt +++ b/gr-blocks/examples/tags/CMakeLists.txt @@ -19,6 +19,13 @@ include(GrPython) +install( + FILES + tagged_file_sink.grc + test_tag_prop.grc + DESTINATION ${GR_PKG_DATA_DIR}/examples/tags +) + GR_PYTHON_INSTALL(PROGRAMS test_file_tags.py DESTINATION ${GR_PKG_DATA_DIR}/examples/tags |