MODULE_SOURCES="miastoplusa_sms.cpp smsmiastoplusagateway.cpp smsmiastoplusagatewayslots.cpp sendthread.cpp"
MODULE_MOC_HEADERS="smsmiastoplusagateway.h smsmiastoplusagatewayslots.h sendthread.h"

MODULE_LIBS=curl
MODULE_INCLUDES=curl/curl.h
MODULE_LIBS_PATH="/usr/lib /usr/local/lib"
MODULE_INCLUDES_PATH="/usr/include /usr/local/include"
MODULE_TOOLS=curl-config

CURL_CONFIG=`which curl-config`
if [ -n "$CURL_CONFIG" ]; then
	if [ -z "$($CURL_CONFIG --feature | grep SSL)" ]; then
		echo "libcurl must be compiled with SSL support!"
		exit 1
	fi
fi

