summaryrefslogtreecommitdiff
path: root/cmake/modules
diff options
context:
space:
mode:
authorPino Toscano <pino@kde.org>2010-03-17 15:56:16 +0100
committerPino Toscano <pino@kde.org>2010-03-17 15:56:16 +0100
commitd2dc83cb8de481e44ea584eee77881978af920fa (patch)
treea87210da0984dba3824bd10ab07657346807c07e /cmake/modules
parent34accfe27305cae18e09243ab2a607287b86fa47 (diff)
[CMake] rename GLIB_VERSION to GLIB_REQUIRED
this way it matches autotools, and it is going to not conflict with my next changes
Diffstat (limited to 'cmake/modules')
-rw-r--r--cmake/modules/FindGTK.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/FindGTK.cmake b/cmake/modules/FindGTK.cmake
index 5dd7ea55..df11f537 100644
--- a/cmake/modules/FindGTK.cmake
+++ b/cmake/modules/FindGTK.cmake
@@ -20,7 +20,7 @@ if (NOT WIN32)
set (GLIB_FOUND FALSE)
if (_LibGLIB2IncDir)
- exec_program(${PKGCONFIG_EXECUTABLE} ARGS --atleast-version=${GLIB_VERSION} glib-2.0 RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull)
+ exec_program(${PKGCONFIG_EXECUTABLE} ARGS --atleast-version=${GLIB_REQUIRED} glib-2.0 RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull)
if(_return_VALUE STREQUAL "0")
set(_glib_FOUND TRUE)
endif(_return_VALUE STREQUAL "0")