From dd05449f36e7d13e1e7a2194ff03ded85e4c5c28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Thu, 31 Jul 2025 20:37:05 +0200 Subject: [PATCH] Remove man page generation without version --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59df994..dc21a33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,8 +28,6 @@ pkg_check_modules(ELF REQUIRED libelf) find_package(Doxygen) find_package(LibXml2 REQUIRED) -add_subdirectory(man) - aux_source_directory("src" CFILES) set(GEN_HEADER_PATH "${CMAKE_CURRENT_BINARY_DIR}/include/generated") @@ -53,6 +51,7 @@ add_custom_target( ${CMAKE_CURRENT_SOURCE_DIR} COMMENT "Generating version header" ) + add_subdirectory(man) endif(DEFINED NO_VERSION_INFO) add_custom_target(schema-header DEPENDS "${GEN_HEADER_PATH}/schema-blob.h")