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
919 B
31 lines
919 B
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
# libcarddav
|
|
pkg_search_module( CARDDAV libcarddav )
|
|
if( CARDDAV_FOUND )
|
|
execute_process(
|
|
COMMAND pkg-config libcarddav --variable=pkgincludedir
|
|
OUTPUT_VARIABLE _incdir
|
|
RESULT_VARIABLE _result
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE )
|
|
execute_process(
|
|
COMMAND pkg-config libcarddav --variable=pkglibdir
|
|
OUTPUT_VARIABLE _libdir
|
|
RESULT_VARIABLE _result
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE )
|
|
list( APPEND CARDDAV_INCLUDE_DIRS ${_incdir} )
|
|
list( APPEND CARDDAV_LIBRARY_DIRS ${_libdir} )
|
|
list( APPEND CARDDAV_LIBRARIES carddav )
|
|
else( )
|
|
tde_message_fatal( "libcarddav is requested, but was not found on your system" )
|
|
endif( )
|