diff options
author | Mark Pulford <mark@kyne.com.au> | 2012-01-21 14:14:40 +1030 |
---|---|---|
committer | Mark Pulford <mark@kyne.com.au> | 2012-03-04 18:54:35 +1030 |
commit | 78e71e1f4e15a9f37d83fb71871c1c4f7c85a424 (patch) | |
tree | ffcc2c18446f57f76bcd09559c167232ec27dd45 | |
parent | 6264bb40e0e9d87f24bc38ad1496b153262b5331 (diff) | |
download | lua-cjson-78e71e1f4e15a9f37d83fb71871c1c4f7c85a424.tar.gz lua-cjson-78e71e1f4e15a9f37d83fb71871c1c4f7c85a424.tar.bz2 lua-cjson-78e71e1f4e15a9f37d83fb71871c1c4f7c85a424.zip |
Reduce length of CMake option descriptions
-rw-r--r-- | CMakeLists.txt | 5 |
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 @@ | |||
6 | project(lua-cjson C) | 6 | project(lua-cjson C) |
7 | cmake_minimum_required(VERSION 2.6) | 7 | cmake_minimum_required(VERSION 2.6) |
8 | 8 | ||
9 | option(ENABLE_CJSON_GLOBAL "Register cjson module table as a global variable - not recommended") | 9 | option(ENABLE_CJSON_GLOBAL "Register a global cjson module table - not recommended") |
10 | option(USE_INTERNAL_FPCONV "Use internal strtod() / g_fmt() code for performance") | 10 | option(USE_INTERNAL_FPCONV "Use internal strtod() / g_fmt() code for performance") |
11 | option(MULTIPLE_THREADS | 11 | option(MULTIPLE_THREADS "Support multi-threaded apps with internal fpconv - recommended" ON) |
12 | "Build internal dtoa with support for multi-threaded applications - recommended" ON) | ||
13 | 12 | ||
14 | if(NOT CMAKE_BUILD_TYPE) | 13 | if(NOT CMAKE_BUILD_TYPE) |
15 | set(CMAKE_BUILD_TYPE Release CACHE STRING | 14 | set(CMAKE_BUILD_TYPE Release CACHE STRING |