cmake: typos, option grouping

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34791 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2010-07-06 20:10:28 +00:00
parent 2b99cacec9
commit b9a447febf

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