diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-02-06 16:01:14 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-02-06 16:01:14 +0000 |
| commit | 8e19bc8c6d2ea133725bbe2c9399a0c5f68775be (patch) | |
| tree | 426c3ae2fa562fc8595e1d0b08c8592b60a8ac6c /CMake | |
| parent | e402a64457289864bc1c526827cf05d0ace21f11 (diff) | |
CMake: fix a few typos.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10554 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'CMake')
| -rw-r--r-- | CMake/options.cmake | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/CMake/options.cmake b/CMake/options.cmake index fb88d908f..39cbd24d4 100644 --- a/CMake/options.cmake +++ b/CMake/options.cmake @@ -4,7 +4,7 @@ # Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org) # Written by Michael Surette # -# Copyright 1998-2010 by Bill Spitzak and others. +# Copyright 1998-2015 by Bill Spitzak and others. # # This library is free software. Distribution and use rights are outlined in # the file "COPYING" which should have been included with this file. If this @@ -74,7 +74,7 @@ include(FindPkgConfig) option(OPTION_CAIRO "use lib Cairo" OFF) option(OPTION_CAIROEXT - "use fltk code instrumentation for cairo extended use" OFF + "use FLTK code instrumentation for cairo extended use" OFF ) if(OPTION_CAIRO OR OPTION_CAIROEXT AND LIB_CAIRO) @@ -154,7 +154,7 @@ if(OPTION_LARGE_FILE) endif(OPTION_LARGE_FILE) ####################################################################### -option(OPTION_USE_SYSTEM_ZLIB "Use's system zlib" ON) +option(OPTION_USE_SYSTEM_ZLIB "use system zlib" ON) if(OPTION_USE_SYSTEM_ZLIB AND LIB_zlib) include(FindZLIB) @@ -179,7 +179,7 @@ endif(OPTION_USE_SYSTEM_ZLIB AND NOT ZLIB_FOUND) set(HAVE_LIBZ 1) ####################################################################### -option(OPTION_USE_SYSTEM_LIBJPEG "Use's system libjpeg" ON) +option(OPTION_USE_SYSTEM_LIBJPEG "use system libjpeg" ON) if(OPTION_USE_SYSTEM_LIBJPEG AND LIB_jpeg) include(FindJPEG) @@ -203,7 +203,7 @@ endif(OPTION_USE_SYSTEM_LIBJPEG AND NOT JPEG_FOUND) set(HAVE_LIBJPEG 1) ####################################################################### -option(OPTION_USE_SYSTEM_LIBPNG "Use's system libpng" ON) +option(OPTION_USE_SYSTEM_LIBPNG "use system libpng" ON) if(OPTION_USE_SYSTEM_LIBPNG AND LIB_png) include(FindPNG) @@ -246,7 +246,7 @@ endif(OPTION_USE_XINERAMA) ####################################################################### if(X11_Xfixes_FOUND) - option(OPTION_USE_XFIXES "use lib XFIXES" ON) + option(OPTION_USE_XFIXES "use lib Xfixes" ON) endif(X11_Xfixes_FOUND) if(OPTION_USE_XFIXES) @@ -260,7 +260,7 @@ endif(OPTION_USE_XFIXES) ####################################################################### if(X11_Xcursor_FOUND) - option(OPTION_USE_XCURSOR "use lib XCURSOR" ON) + option(OPTION_USE_XCURSOR "use lib Xcursor" ON) endif(X11_Xcursor_FOUND) if(OPTION_USE_XCURSOR) |
