]> git.lyx.org Git - features.git/blobdiff - development/cmake/CMakeLists.txt
cmake: typos, option grouping
[features.git] / development / cmake / CMakeLists.txt
index 1a9562d4a1c8443d67ecd755f10a1ef2f4a56d18..7f5bdf58dae96c5c497d4c3a04bb9c5fac92111a 100644 (file)
@@ -24,25 +24,25 @@ include(LyXMacros)
 
 message(STATUS)
 message(STATUS "Switch LYX_* variables by -DLYX_*=1 or 0:")
+LYX_OPTION(NLS "Use nls" OFF)
+LYX_OPTION(ASPELL "Require aspell" OFF)
+LYX_OPTION(DEBUG "Build debug version" OFF)
+LYX_OPTION(RELEASE "Build release version" ON)
+LYX_OPTION(PROFILE "Build profile version" OFF)
+LYX_OPTION(USE_EXTERNAL_BOOST "Use external boost" OFF)
+LYX_OPTION(USE_EXTERNAL_LIBINTL "Use external libintl" ON)
 LYX_OPTION(INSTALL "Build install projects/rules" ON)
+LYX_OPTION(USE_VERSION_SUFFIX "Use version suffix for packaging" OFF)
+LYX_OPTION(NO_CONSOLE "Suppress console on Windows" OFF)
+LYX_OPTION(VLD "Use VLD on with MSVC" OFF)
 LYX_OPTION(DISABLE_PCH "Disable precompiled headers" ON)
+LYX_OPTION(MERGE_FILES "Merge source files into one compilation unit" OFF)
 LYX_OPTION(DEBUG_GLIBC "Enable libstdc++ debug mode" OFF)
 LYX_OPTION(DEBUG_GLIBC_PEDANTIC "Enable libstdc++pedantic debug mode" OFF)
-LYX_OPTION(USE_EXTERNAL_BOOST "Use external boost" OFF)
-LYX_OPTION(NLS "Use nls" OFF)
-LYX_OPTION(ASPELL "Use aspell" OFF)
-LYX_OPTION(NO_CONSOLE "Suppress Console on Windows" OFF)
-LYX_OPTION(USE_VERSION_SUFFIX "Use version suffix for packaging" OFF)
-LYX_OPTION(VLD "Use VLD on with MSVC" OFF)
-LYX_OPTION(MERGE_FILES "Merge source files into one copilation unit" OFF)
-LYX_OPTION(DEBUG "Build debug version" OFF)
-LYX_OPTION(RELEASE "Build release" ON)
-LYX_OPTION(PROFILE "Enable profile build for GCC" OFF)
-LYX_OPTION(STDLIB_DEBUG "Use debug stdstdlib" OFF)
+LYX_OPTION(STDLIB_DEBUG "Use debug stdlib" OFF)
 LYX_OPTION(CONCEPT_CHECKS "Enable concept-checks" OFF)
 LYX_OPTION(QUIET "Don't generate verbose makefiles" OFF)
 LYX_OPTION(SHARED_LIBRARIES "Build shared libraries" OFF)
-LYX_OPTION(USE_EXTERNAL_LIBINTL "Use external libintl" ON)
 message(STATUS)
 
 set(EXECUTABLE_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/bin)