aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-24 22:44:25 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-24 22:44:25 +0200
commitd0083202881484c9e0ce7f6509f5241de39ed4c7 (patch)
tree54a34b96d252a2d8211771bc3e2b3d680613999f
parentc3f146d3b8db51f2e58b1cdda2fb5f76ba95877c (diff)
downloadlibayatana-appindicator-d0083202881484c9e0ce7f6509f5241de39ed4c7.tar.gz
libayatana-appindicator-d0083202881484c9e0ce7f6509f5241de39ed4c7.tar.bz2
libayatana-appindicator-d0083202881484c9e0ce7f6509f5241de39ed4c7.zip
CMakeLists.txt: Fix gtkdoc-scan binary name.
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
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()