aboutsummaryrefslogtreecommitdiff
path: root/modules/FindCups.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'modules/FindCups.cmake')
-rw-r--r--modules/FindCups.cmake18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindCups.cmake b/modules/FindCups.cmake
index 4d069336..cf2c46be 100644
--- a/modules/FindCups.cmake
+++ b/modules/FindCups.cmake
@@ -19,18 +19,18 @@ FIND_LIBRARY(CUPS_LIBRARIES NAMES cups
/usr/local/lib
)
-if(CUPS_INCLUDE_DIR AND CUPS_LIBRARIES)
+if (CUPS_INCLUDE_DIR AND CUPS_LIBRARIES)
set(CUPS_FOUND TRUE)
-endif(CUPS_INCLUDE_DIR AND CUPS_LIBRARIES)
+endif (CUPS_INCLUDE_DIR AND CUPS_LIBRARIES)
-if(CUPS_FOUND)
- if(NOT Cups_FIND_QUIETLY)
+if (CUPS_FOUND)
+ if (NOT Cups_FIND_QUIETLY)
message(STATUS "Found Cups: ${CUPS_LIBRARIES}")
- endif(NOT Cups_FIND_QUIETLY)
-else(CUPS_FOUND)
- if(Cups_FIND_REQUIRED)
+ endif (NOT Cups_FIND_QUIETLY)
+else (CUPS_FOUND)
+ if (Cups_FIND_REQUIRED)
message(FATAL_ERROR "Could NOT find Cups")
- endif(Cups_FIND_REQUIRED)
-endif(CUPS_FOUND)
+ endif (Cups_FIND_REQUIRED)
+endif (CUPS_FOUND)
MARK_AS_ADVANCED(CUPS_INCLUDE_DIR CUPS_LIBRARIES)