blob: 514845c06e6d7720164799cb7da76af808b73619 (
plain)
1
2
3
4
5
6
7
8
9
|
# Find if we installed kdepimlibs before to compile it
FIND_PATH( KDEPIMLIBS_INCLUDE_DIR emailfunctions/email.h
${KDE4_INCLUDE_DIR}
)
if( NOT KDEPIMLIBS_INCLUDE_DIR )
message( FATAL_ERROR "You didn't compile kdepimlibs before to compile it. Please install it" )
endif(NOT KDEPIMLIBS_INCLUDE_DIR )
|