From a1bca1f9ba65714454905b92e57d8e37ff7ddcbe Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Thu, 19 Sep 2013 21:17:30 +0200 Subject: [PATCH] build: doxygen package needs to be detetected before the doxygen is used MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Based on a patch for gr-osmosdr by Jaroslav Škarvada Thanks to wk@ire.pw.edu.pl for reporting the issue in gr-iqbal. Signed-off-by: Sylvain Munaut --- CMakeLists.txt | 2 ++ docs/CMakeLists.txt | 5 ----- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e134f4..b5737ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -114,6 +114,8 @@ if(NOT GNURADIO_RUNTIME_FOUND) message(FATAL_ERROR "GnuRadio Runtime required to compile iqbalance") endif() +find_package(Doxygen) + ######################################################################## # Setup the include and linker paths ######################################################################## diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index f16fbf6..446b86a 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -17,11 +17,6 @@ # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. -######################################################################## -# Setup dependencies -######################################################################## -find_package(Doxygen) - ######################################################################## # Begin conditional configuration ########################################################################