From 3c302ef4c1655ff27c3f66a924d897a6fdd07060 Mon Sep 17 00:00:00 2001
From: Josh Morman <mormjb@gmail.com>
Date: Thu, 11 Jun 2020 08:14:06 -0400
Subject: pybind: remove docstring dependency on entire module

When the module is used as a dependency for the docstring substitution
task, any change to any file in the module will cause the regeneration
of the bindings for the entire module and all modules that are dependent
on that one.

There is still probably a better way tie the docstring substitution into
the custom commands, per file
---
 gr-vocoder/python/vocoder/bindings/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'gr-vocoder/python/vocoder')

diff --git a/gr-vocoder/python/vocoder/bindings/CMakeLists.txt b/gr-vocoder/python/vocoder/bindings/CMakeLists.txt
index d059dc23f..48f73546c 100644
--- a/gr-vocoder/python/vocoder/bindings/CMakeLists.txt
+++ b/gr-vocoder/python/vocoder/bindings/CMakeLists.txt
@@ -56,7 +56,7 @@ if(ENABLE_DOXYGEN)
         "--output_dir" ${CMAKE_CURRENT_BINARY_DIR}
         "--filter" gr::vocoder
         COMMENT "Adding docstrings into vocoder pybind headers ..."
-        DEPENDS gnuradio_docstrings gnuradio-vocoder)
+        DEPENDS gnuradio_docstrings)
     add_custom_target(vocoder_docstrings ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/docstring_status)
 else(ENABLE_DOXYGEN)
     add_custom_command( 
-- 
cgit v1.2.3