summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_fr>2010-05-27 18:37:04 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_fr>2010-05-27 18:47:36 +0200
commit5b08d350f10b7ba1be2b966af68017b64d4bbcd0 (patch)
treee2eaf199d779a981ddbc867ce0c426c6e8f44e79 /CMake
parent98820e79e786f3d318a45e0f8e6100841530ff50 (diff)
downloadMana-5b08d350f10b7ba1be2b966af68017b64d4bbcd0.tar.gz
Mana-5b08d350f10b7ba1be2b966af68017b64d4bbcd0.tar.bz2
Mana-5b08d350f10b7ba1be2b966af68017b64d4bbcd0.tar.xz
Mana-5b08d350f10b7ba1be2b966af68017b64d4bbcd0.zip
Added pseudo-check for the Guichan minimal required version: 0.8.0.
The guichan/widgetlistener.hpp file presence is now checked for both autotools and cmake. This resolves TMW-Mantis: #503 Reviewed-by: Jaxad0127
Diffstat (limited to 'CMake')
-rw-r--r--CMake/Modules/FindGuichan.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/CMake/Modules/FindGuichan.cmake b/CMake/Modules/FindGuichan.cmake
index 1623b00d..dbc863e2 100644
--- a/CMake/Modules/FindGuichan.cmake
+++ b/CMake/Modules/FindGuichan.cmake
@@ -85,6 +85,13 @@ FOREACH (COMPONENT ${Guichan_FIND_COMPONENTS})
MESSAGE(FATAL_ERROR "Could NOT find Guichan component ${COMPONENT}")
ENDIF ()
+ # Check guichan >= 0.8.0 by searching for the widgetlistener.hpp file.
+ SET(Guichan_HEADER "guichan/widgetlistener.hpp")
+ IF (NOT EXISTS ${Guichan_INCLUDE_DIR}/${Guichan_HEADER})
+ SET(GUICHAN_FOUND FALSE)
+ MESSAGE(FATAL_ERROR "Guichan version is less than 0.8.0")
+ ENDIF()
+
IF (NOT Guichan_FIND_QUIETLY AND NOT Guichan_QUIET)
MESSAGE(STATUS "Found Guichan ${COMPONENT}: ${Guichan_LIBRARY_${COMPONENT}}")
ENDIF ()