From 0fb3c9c3f684f5a25bd425ed079a20a79f0c969d Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Thu, 23 May 2024 14:26:45 +0300 Subject: [PATCH] CMake: Rename USE_DOXYGEN to ENABLE_DOXYGEN It's more consistent with the other option() uses. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 534d6ace..445822b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1960,9 +1960,9 @@ endif() ############################################################################# if(UNIX) - option(USE_DOXYGEN "Use Doxygen to generate liblzma API docs" OFF) + option(ENABLE_DOXYGEN "Use Doxygen to generate liblzma API docs" OFF) - if (USE_DOXYGEN) + if (ENABLE_DOXYGEN) file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/doc") add_custom_command(