From 239ad984704454956e7dbf258f32c403ed3b681b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Fonseca?= Date: Wed, 27 Sep 2023 19:20:48 +0100 Subject: [PATCH] fix: add option descriptions --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d6b4bcc1..d624375c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,10 +7,10 @@ project(cubos VERSION 0.1.0) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/") # Should clang-tidy errors be automatically fixed? -option(FIX_CLANG_TIDY_ERRORS OFF) +option(FIX_CLANG_TIDY_ERRORS "Automatically fix clang-tidy errors" OFF) # Enable coverage reports -option(ENABLE_COVERAGE OFF) +option(ENABLE_COVERAGE "Generate coverage report" OFF) if(ENABLE_COVERAGE) include(CodeCoverage) append_coverage_compiler_flags() @@ -99,7 +99,7 @@ add_subdirectory(engine) # Add doxygen documentation -option(BUILD_DOCUMENTATION OFF) +option(BUILD_DOCUMENTATION "Build docs" OFF) if(BUILD_DOCUMENTATION) add_subdirectory(docs) endif()