Removes few tabs from options.cmake. When removing tabs, also apply cmp standard (two spaces) recommended indentation.
This commit is contained in:
parent
9338385da7
commit
65d90c33dc
@ -143,8 +143,8 @@ if(DOXYGEN_FOUND)
|
||||
option(OPTION_BUILD_HTML_DOCUMENTATION "build html docs" OFF)
|
||||
option(OPTION_INSTALL_HTML_DOCUMENTATION "install html docs" OFF)
|
||||
if(LATEX_FOUND)
|
||||
option(OPTION_BUILD_PDF_DOCUMENTATION "build pdf docs" OFF)
|
||||
option(OPTION_INSTALL_PDF_DOCUMENTATION "install pdf docs" OFF)
|
||||
option(OPTION_BUILD_PDF_DOCUMENTATION "build pdf docs" OFF)
|
||||
option(OPTION_INSTALL_PDF_DOCUMENTATION "install pdf docs" OFF)
|
||||
endif(LATEX_FOUND)
|
||||
endif(DOXYGEN_FOUND)
|
||||
|
||||
@ -172,16 +172,16 @@ if (PKG_CAIRO_FOUND)
|
||||
string(REPLACE ";" " " CAIROFLAGS "${PKG_CAIRO_CFLAGS}")
|
||||
|
||||
if (LIB_CAIRO AND OPTION_CAIROEXT)
|
||||
set(FLTK_USE_CAIRO 1)
|
||||
set(FLTK_CAIRO_FOUND TRUE)
|
||||
set(FLTK_USE_CAIRO 1)
|
||||
set(FLTK_CAIRO_FOUND TRUE)
|
||||
else ()
|
||||
set(FLTK_CAIRO_FOUND FALSE)
|
||||
set(FLTK_CAIRO_FOUND FALSE)
|
||||
endif (LIB_CAIRO AND OPTION_CAIROEXT)
|
||||
else ()
|
||||
if (OPTION_CAIRO OR OPTION_CAIROEXT)
|
||||
message(STATUS "*** Cairo was requested but not found - please check your cairo installation")
|
||||
message(STATUS "*** or disable options OPTION_CAIRO and OPTION_CAIRO_EXT.")
|
||||
message(FATAL_ERROR "*** Terminating: missing Cairo libs or headers.")
|
||||
message(STATUS "*** Cairo was requested but not found - please check your cairo installation")
|
||||
message(STATUS "*** or disable options OPTION_CAIRO and OPTION_CAIRO_EXT.")
|
||||
message(FATAL_ERROR "*** Terminating: missing Cairo libs or headers.")
|
||||
endif (OPTION_CAIRO OR OPTION_CAIROEXT)
|
||||
endif (PKG_CAIRO_FOUND)
|
||||
|
||||
@ -462,20 +462,20 @@ endif (OPTION_USE_PANGO)
|
||||
#######################################################################
|
||||
if(X11_Xft_FOUND AND OPTION_USE_PANGO)
|
||||
#this covers Debian, Ubuntu, FreeBSD, NetBSD, Darwin
|
||||
if(APPLE AND OPTION_APPLE_X11)
|
||||
list(APPEND CMAKE_INCLUDE_PATH /sw/include)
|
||||
list(APPEND CMAKE_LIBRARY_PATH /sw/lib)
|
||||
endif(APPLE AND OPTION_APPLE_X11)
|
||||
find_file(HAVE_PANGO_H pango-1.0/pango/pango.h ${CMAKE_INCLUDE_PATH})
|
||||
find_file(HAVE_PANGOXFT_H pango-1.0/pango/pangoxft.h ${CMAKE_INCLUDE_PATH})
|
||||
if(APPLE AND OPTION_APPLE_X11)
|
||||
list(APPEND CMAKE_INCLUDE_PATH /sw/include)
|
||||
list(APPEND CMAKE_LIBRARY_PATH /sw/lib)
|
||||
endif(APPLE AND OPTION_APPLE_X11)
|
||||
find_file(HAVE_PANGO_H pango-1.0/pango/pango.h ${CMAKE_INCLUDE_PATH})
|
||||
find_file(HAVE_PANGOXFT_H pango-1.0/pango/pangoxft.h ${CMAKE_INCLUDE_PATH})
|
||||
|
||||
if(HAVE_PANGO_H AND HAVE_PANGOXFT_H)
|
||||
find_library(HAVE_LIB_PANGO pango-1.0 ${CMAKE_LIBRARY_PATH})
|
||||
find_library(HAVE_LIB_PANGOXFT pangoxft-1.0 ${CMAKE_LIBRARY_PATH})
|
||||
if(APPLE)
|
||||
set(HAVE_LIB_GOBJECT TRUE)
|
||||
set(HAVE_LIB_GOBJECT TRUE)
|
||||
else()
|
||||
find_library(HAVE_LIB_GOBJECT gobject-2.0 ${CMAKE_LIBRARY_PATH})
|
||||
find_library(HAVE_LIB_GOBJECT gobject-2.0 ${CMAKE_LIBRARY_PATH})
|
||||
endif(APPLE)
|
||||
endif(HAVE_PANGO_H AND HAVE_PANGOXFT_H)
|
||||
if(HAVE_LIB_PANGO AND HAVE_LIB_PANGOXFT AND HAVE_LIB_GOBJECT)
|
||||
@ -559,7 +559,7 @@ endif(OPTION_FILESYSTEM_SUPPORT)
|
||||
# prior to CMake 3.0 this feature was buggy
|
||||
if(NOT CMAKE_VERSION VERSION_LESS 3.0.0)
|
||||
option(CMAKE_SUPPRESS_REGENERATION
|
||||
"suppress rules to re-run CMake on rebuild" OFF)
|
||||
"suppress rules to re-run CMake on rebuild" OFF)
|
||||
mark_as_advanced(CMAKE_SUPPRESS_REGENERATION)
|
||||
endif(NOT CMAKE_VERSION VERSION_LESS 3.0.0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user