From 939482ab2b5a6585bdd2e5251f3f2f113d64686f Mon Sep 17 00:00:00 2001 From: Jehan Date: Mon, 6 Nov 2017 02:11:20 +0100 Subject: [PATCH] CMake: slightly improve the configuration option messages. Also add full stops, similarly to CMake defaut options. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d1ff0e..4a07891 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,8 +36,8 @@ include(GNUInstallDirs) ######## Configuration -option(BUILD_BINARY "Build executable" ON) -option(BUILD_SHARED_LIBS "Build shared library and link executable to it" ON) +option(BUILD_BINARY "Build the CLI tool." ON) +option(BUILD_SHARED_LIBS "Build shared library and link executable to it." ON) option(CHECK_SSE2 "Check and enable SSE2 extensions if supported. Disabling SSE on platforms which support it may decrease performances." ON) if (BUILD_SHARED_LIBS)