ENH: lower case cmake functions and remove tabs and re-indent cmake code

This commit is contained in:
Bill Hoffman 2009-06-09 17:29:16 +00:00
parent 8740d147c9
commit 744dceaffe
14 changed files with 1197 additions and 1187 deletions

View file

@ -1,8 +1,8 @@
# Locate zlib
INCLUDE("${CMAKE_ROOT}/Modules/FindZLIB.cmake")
include("${CMAKE_ROOT}/Modules/FindZLIB.cmake")
FIND_LIBRARY(ZLIB_LIBRARY_DEBUG NAMES zd zlibd zdlld zlib1d )
find_library(ZLIB_LIBRARY_DEBUG NAMES zd zlibd zdlld zlib1d )
IF(ZLIB_FOUND AND ZLIB_LIBRARY_DEBUG)
SET( ZLIB_LIBRARIES optimized "${ZLIB_LIBRARY}" debug ${ZLIB_LIBRARY_DEBUG})
ENDIF()
if(ZLIB_FOUND AND ZLIB_LIBRARY_DEBUG)
set( ZLIB_LIBRARIES optimized "${ZLIB_LIBRARY}" debug ${ZLIB_LIBRARY_DEBUG})
endif()