summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Esser <besser82@fedoraproject.org>2020-05-18 12:26:47 +0200
committerBjörn Esser <besser82@fedoraproject.org>2020-05-18 12:34:08 +0200
commit76dd99abb24780d1f2a770d2534829aa76798492 (patch)
tree63d52738420abe6f51f897842b9af2f492852ddb
parent78642dcb9b9b58bd0111ffba5e46b9346b8d486b (diff)
downloadjson-c-76dd99abb24780d1f2a770d2534829aa76798492.tar.gz
CMake: Re-format config-option block and re-order it alphabetically.
-rw-r--r--CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 180d6e9..901eb6e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -83,11 +83,11 @@ COMMAND make package_source
)
# Enable or disable features. By default, all features are turned off.
-option(ENABLE_RDRAND "Enable RDRAND Hardware RNG Hash Seed" OFF)
-option(ENABLE_THREADING "Enable partial threading support." OFF)
-option(DISABLE_WERROR "Avoid treating compiler warnings as fatal errors" OFF)
-option(DISABLE_BSYMBOLIC "Avoid linking with -Bsymbolic-function" OFF)
-option(DISABLE_THREAD_LOCAL_STORAGE "Disable Thread-Local Storage (HAVE___THREAD)" OFF)
+option(DISABLE_BSYMBOLIC "Avoid linking with -Bsymbolic-function." OFF)
+option(DISABLE_THREAD_LOCAL_STORAGE "Disable using Thread-Local Storage (HAVE___THREAD)." OFF)
+option(DISABLE_WERROR "Avoid treating compiler warnings as fatal errors." OFF)
+option(ENABLE_RDRAND "Enable RDRAND Hardware RNG Hash Seed." OFF)
+option(ENABLE_THREADING "Enable partial threading support." OFF)
if (UNIX OR MINGW OR CYGWIN)
list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_GNU_SOURCE)