CMake: slightly improve the configuration option messages.

Also add full stops, similarly to CMake defaut options.
This commit is contained in:
Jehan 2017-11-06 02:11:20 +01:00
parent 77bf71ea36
commit 939482ab2b

View File

@ -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)