Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpx/lua-cjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2012-01-21 07:44:40 +0400
committerMark Pulford <mark@kyne.com.au>2012-03-04 12:24:35 +0400
commit78e71e1f4e15a9f37d83fb71871c1c4f7c85a424 (patch)
treeffcc2c18446f57f76bcd09559c167232ec27dd45
parent6264bb40e0e9d87f24bc38ad1496b153262b5331 (diff)
Reduce length of CMake option descriptions
-rw-r--r--CMakeLists.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5de35db..eb598fe 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,10 +6,9 @@
project(lua-cjson C)
cmake_minimum_required(VERSION 2.6)
-option(ENABLE_CJSON_GLOBAL "Register cjson module table as a global variable - not recommended")
+option(ENABLE_CJSON_GLOBAL "Register a global cjson module table - not recommended")
option(USE_INTERNAL_FPCONV "Use internal strtod() / g_fmt() code for performance")
-option(MULTIPLE_THREADS
- "Build internal dtoa with support for multi-threaded applications - recommended" ON)
+option(MULTIPLE_THREADS "Support multi-threaded apps with internal fpconv - recommended" ON)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING