diff options
Diffstat (limited to 'kopete/ConfigureChecks.cmake')
-rw-r--r-- | kopete/ConfigureChecks.cmake | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kopete/ConfigureChecks.cmake b/kopete/ConfigureChecks.cmake new file mode 100644 index 00000000..6a78d91f --- /dev/null +++ b/kopete/ConfigureChecks.cmake @@ -0,0 +1,20 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +# glib-2.0 (jabber, msn) +if( (BUILD_KOPETE_PROTOCOL_JABBER AND WITH_JINGLE) OR (BUILD_KOPETE_PROTOCOL_MSN AND WITH_WEBCAM) ) + pkg_search_module( GLIB2 glib-2.0 ) + if( GLIB2_FOUND ) + set( HAVE_GLIB 1 CACHE INTERNAL "" FORCE ) + else( ) + tde_message_fatal( "glib-2.0 is required, but was not found on your system" ) + endif( ) +endif( ) |