summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/sms/services/ConfigureChecks.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/sms/services/ConfigureChecks.cmake')
-rw-r--r--kopete/protocols/sms/services/ConfigureChecks.cmake30
1 files changed, 0 insertions, 30 deletions
diff --git a/kopete/protocols/sms/services/ConfigureChecks.cmake b/kopete/protocols/sms/services/ConfigureChecks.cmake
deleted file mode 100644
index 4ed454b4..00000000
--- a/kopete/protocols/sms/services/ConfigureChecks.cmake
+++ /dev/null
@@ -1,30 +0,0 @@
-#################################################
-#
-# (C) 2010-2011 Serghei Amelian
-# serghei (DOT) amelian (AT) gmail.com
-#
-# Improvements and feedback are welcome
-#
-# This file is released under GPL >= 2
-#
-#################################################
-
-if( WITH_GSM )
-
- tde_save( CMAKE_REQUIRED_INCLUDES )
- set( CMAKE_REQUIRED_INCLUDES ${TQT_INCLUDE_DIRS} )
- check_include_file_cxx( gsmlib/gsm_util.h HAVE_GSMLIB_GSM_UTIL_H )
- tde_restore( CMAKE_REQUIRED_INCLUDES )
-
- if( HAVE_GSMLIB_GSM_UTIL_H )
- set( INCLUDE_SMSGSM 1 )
- find_library( GSM_LIBRARY gsmme )
- endif( )
-
- if( NOT (HAVE_GSMLIB_GSM_UTIL_H AND GSM_LIBRARY) )
- tde_message_fatal( "gsmlib is required, but was not found on your system" )
- endif( )
-
-endif( )
-
-configure_file( config.h.cmake config.h @ONLY )