summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Gilbert <jacob.gilbert@protonmail.com>2021-10-18 11:13:01 -0600
committermormj <34754695+mormj@users.noreply.github.com>2021-10-18 16:02:30 -0400
commitc3c411bee5bf1ff52dfc541a7d7b990d91eb99ee (patch)
tree6965a6c42e1b42680bbd470613b05e95eb95663f
parent48120c39228ead7941140be310580188c29b61c1 (diff)
pdu: install examples correctly
Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
-rw-r--r--gr-pdu/CMakeLists.txt2
-rw-r--r--gr-pdu/examples/CMakeLists.txt8
2 files changed, 8 insertions, 2 deletions
diff --git a/gr-pdu/CMakeLists.txt b/gr-pdu/CMakeLists.txt
index d0a94d6f91..6b1cc748e7 100644
--- a/gr-pdu/CMakeLists.txt
+++ b/gr-pdu/CMakeLists.txt
@@ -21,6 +21,8 @@ GR_REGISTER_COMPONENT("gr-pdu" ENABLE_GR_PDU
ENABLE_GR_FILTER
)
+SET(GR_PKG_PDU_EXAMPLES_DIR ${GR_PKG_DATA_DIR}/examples/pdu)
+
########################################################################
# Begin conditional configuration
########################################################################
diff --git a/gr-pdu/examples/CMakeLists.txt b/gr-pdu/examples/CMakeLists.txt
index cd0750ca63..cdabd160bf 100644
--- a/gr-pdu/examples/CMakeLists.txt
+++ b/gr-pdu/examples/CMakeLists.txt
@@ -7,7 +7,11 @@
install(
FILES
+ pdu_lambda_chirp_demo.grc
+ pdu_lambda_example.grc
pdu_tools_demo.grc
- DESTINATION ${GR_PKG_DATA_DIR}/examples/pdu
+ simple_pdu_to_stream_example.grc
+ tags_to_pdu_example.grc
+ take_skip_to_pdu_example.grc
+ DESTINATION ${GR_PKG_PDU_EXAMPLES_DIR}
)
-