diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d094a27cae7cd8e42c06276d32e99706a11ddd9..cfeed63f47afbb2880affb5b2ab8bfb498e0be20 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,11 +28,11 @@ set(module_name _${CMAKE_PROJECT_NAME}) # target name ############################################## # Define options -option(PYBIND "python binding" OFF) -option(WERROR "Warning as error" OFF) -option(TEST "Enable tests" ON) -option(COVERAGE "Enable coverage" OFF) -option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...)" OFF) +option(PYBIND "python binding (Default: OFF)" OFF) +option(WERROR "Warning as error (Default: OFF)" OFF) +option(TEST "Enable tests (Default: ON)" ON) +option(COVERAGE "Enable coverage (Default: OFF)" OFF) +option(ENABLE_ASAN "Enable ASan (AddressSanitizer) for runtime analysis of memory use (over/underflow, memory leak, ...) (Default: OFF)" OFF) ############################################## # Import utils CMakeLists