blob: b90809d5bd620bf7bee85f83c70e9a9cd52ca4e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Find if we installed kdepimlibs before to compile it
#TODO: use kcal/kcal.h, but it doesn't exist yet
FIND_PATH( KDEPIMLIBS_INCLUDE_DIR emailfunctions/email.h
${KDE4_INCLUDE_DIR}
)
if( NOT KDEPIMLIBS_INCLUDE_DIR )
message(FATAL_ERROR "Could NOT find a kdepimlibs installation.\nPlease build and install kdepimlibs first.")
endif(NOT KDEPIMLIBS_INCLUDE_DIR )
set(KDE4_EMAILFUNCTIONS_LIBS emailfunctions)
set(KDE4_KCAL_LIBS kcal)
set(KDE4_KTNEF_LIBS ktnef)
|