aboutsummaryrefslogtreecommitdiff
path: root/modules/FindBerkeleyDB.cmake
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2010-08-24 19:49:35 +0000
committerAlexander Neundorf <neundorf@kde.org>2010-08-24 19:49:35 +0000
commit8773fa29dcfeddc45d4255768f940d5776e9f5c3 (patch)
tree88fb3d503e7d1d77bc6ce546c8bcca0bdadcd73e /modules/FindBerkeleyDB.cmake
parent7bd76232103ea7e1a01d35c59e4cd25fddfd0433 (diff)
downloadextra-cmake-modules-8773fa29dcfeddc45d4255768f940d5776e9f5c3.tar.gz
extra-cmake-modules-8773fa29dcfeddc45d4255768f940d5776e9f5c3.tar.bz2
-use consistently all lowercase here
Alex svn path=/trunk/KDE/kdelibs/; revision=1167505
Diffstat (limited to 'modules/FindBerkeleyDB.cmake')
-rw-r--r--modules/FindBerkeleyDB.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindBerkeleyDB.cmake b/modules/FindBerkeleyDB.cmake
index 749f1664..021d9428 100644
--- a/modules/FindBerkeleyDB.cmake
+++ b/modules/FindBerkeleyDB.cmake
@@ -11,15 +11,15 @@
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-FIND_PATH(BERKELEY_DB_INCLUDE_DIR db.h
+find_path(BERKELEY_DB_INCLUDE_DIR db.h
/usr/include/db4
/usr/local/include/db4
)
-FIND_LIBRARY(BERKELEY_DB_LIBRARIES NAMES db )
+find_library(BERKELEY_DB_LIBRARIES NAMES db )
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Berkeley "Could not find Berkeley DB >= 4.1" BERKELEY_DB_INCLUDE_DIR BERKELEY_DB_LIBRARIES)
# show the BERKELEY_DB_INCLUDE_DIR and BERKELEY_DB_LIBRARIES variables only in the advanced view
-MARK_AS_ADVANCED(BERKELEY_DB_INCLUDE_DIR BERKELEY_DB_LIBRARIES )
+mark_as_advanced(BERKELEY_DB_INCLUDE_DIR BERKELEY_DB_LIBRARIES )