You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
793 B
31 lines
793 B
#################################################
|
|
#
|
|
# (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 )
|