From d0083202881484c9e0ce7f6509f5241de39ed4c7 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sun, 24 Oct 2021 22:44:25 +0200 Subject: CMakeLists.txt: Fix gtkdoc-scan binary name. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index e869439..7036e62 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,9 +66,9 @@ find_package(PkgConfig REQUIRED) pkg_check_modules(PROJECT_DEPS REQUIRED ${DEPS}) if (ENABLE_GTKDOC) - find_program (GTKDOC "gtk-doc") + find_program (GTKDOC "gtkdoc-scan") if (NOT GTKDOC_FOUND) - message(WARNING "Building the gtk-doc API documentation is enabled, but the gtk-doc executable has not been found. Disabling API documentation building, although requested.") + message(WARNING "Building the gtk-doc API documentation is enabled, but the gtkdoc-scan executable has not been found. Disabling API documentation building, although requested.") set (ENABLE_GTKDOC OFF) endif() endif() -- cgit v1.2.3