diff options
Diffstat (limited to 'modules/FindLibXslt.cmake')
-rw-r--r-- | modules/FindLibXslt.cmake | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindLibXslt.cmake b/modules/FindLibXslt.cmake index 4abb6f9f..be9cd16f 100644 --- a/modules/FindLibXslt.cmake +++ b/modules/FindLibXslt.cmake @@ -33,19 +33,19 @@ FIND_LIBRARY(LIBXSLT_LIBRARIES NAMES xslt libxslt ${GNUWIN32_DIR}/lib ) -if(LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) +if (LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) set(LIBXSLT_FOUND TRUE) -endif(LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) +endif (LIBXSLT_INCLUDE_DIR AND LIBXSLT_LIBRARIES) -if(LIBXSLT_FOUND) - if(NOT LibXslt_FIND_QUIETLY) +if (LIBXSLT_FOUND) + if (NOT LibXslt_FIND_QUIETLY) message(STATUS "Found LibXslt: ${LIBXSLT_LIBRARIES}") - endif(NOT LibXslt_FIND_QUIETLY) -else(LIBXSLT_FOUND) - if(LibXslt_FIND_REQUIRED) + endif (NOT LibXslt_FIND_QUIETLY) +else (LIBXSLT_FOUND) + if (LibXslt_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find LibXslt") - endif(LibXslt_FIND_REQUIRED) -endif(LIBXSLT_FOUND) + endif (LibXslt_FIND_REQUIRED) +endif (LIBXSLT_FOUND) MARK_AS_ADVANCED(LIBXSLT_INCLUDE_DIR LIBXSLT_LIBRARIES) |