aboutsummaryrefslogtreecommitdiff
path: root/modules/FindBZip2.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'modules/FindBZip2.cmake')
-rw-r--r--modules/FindBZip2.cmake24
1 files changed, 12 insertions, 12 deletions
diff --git a/modules/FindBZip2.cmake b/modules/FindBZip2.cmake
index 21f4a825..5e9faad9 100644
--- a/modules/FindBZip2.cmake
+++ b/modules/FindBZip2.cmake
@@ -20,20 +20,20 @@ FIND_LIBRARY(BZIP2_LIBRARIES NAMES bz2 bzip2
/usr/local/lib
)
-IF(BZIP2_INCLUDE_DIR AND BZIP2_LIBRARIES)
- SET(BZIP2_FOUND TRUE)
+if(BZIP2_INCLUDE_DIR AND BZIP2_LIBRARIES)
+ set(BZIP2_FOUND TRUE)
INCLUDE(CheckLibraryExists)
CHECK_LIBRARY_EXISTS(${BZIP2_LIBRARIES} BZ2_bzCompressInit "" BZIP2_NEED_PREFIX)
-ENDIF(BZIP2_INCLUDE_DIR AND BZIP2_LIBRARIES)
+endif(BZIP2_INCLUDE_DIR AND BZIP2_LIBRARIES)
-IF(BZIP2_FOUND)
- IF(NOT BZip2_FIND_QUIETLY)
- MESSAGE(STATUS "Found BZip2: ${BZIP2_LIBRARIES}")
- ENDIF(NOT BZip2_FIND_QUIETLY)
-ELSE(BZIP2_FOUND)
- IF(BZip2_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find BZip2")
- ENDIF(BZip2_FIND_REQUIRED)
-ENDIF(BZIP2_FOUND)
+if(BZIP2_FOUND)
+ if(not BZip2_FIND_QUIETLY)
+ message(STATUS "Found BZip2: ${BZIP2_LIBRARIES}")
+ endif(not BZip2_FIND_QUIETLY)
+else(BZIP2_FOUND)
+ if(BZip2_FIND_REQUIRED)
+ message(FATAL_ERROR "Could not find BZip2")
+ endif(BZip2_FIND_REQUIRED)
+endif(BZIP2_FOUND)
MARK_AS_ADVANCED(BZIP2_INCLUDE_DIR BZIP2_LIBRARIES)