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.
36 lines
979 B
36 lines
979 B
include_directories(
|
|
${CMAKE_BINARY_DIR}/lib
|
|
${CMAKE_SOURCE_DIR}/lib
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
add_subdirectory(abbrowserconduit)
|
|
add_subdirectory(docconduit)
|
|
add_subdirectory(knotes)
|
|
add_subdirectory(memofileconduit)
|
|
add_subdirectory(notepadconduit)
|
|
add_subdirectory(null)
|
|
add_subdirectory(popmail)
|
|
add_subdirectory(sysinfoconduit)
|
|
add_subdirectory(timeconduit)
|
|
|
|
FIND_PATH( HAVE_CALENDARLOCAL_H "libkcal/calendarlocal.h" ${KDE3_INCLUDE_DIR} )
|
|
|
|
IF (HAVE_CALENDARLOCAL_H)
|
|
add_subdirectory(vcalconduit)
|
|
ELSE (HAVE_CALENDARLOCAL_H)
|
|
MESSAGE(STATUS "No KDE PIM development headers were found.")
|
|
ENDIF (HAVE_CALENDARLOCAL_H)
|
|
|
|
###
|
|
#
|
|
# MAL seems to be broken, or the MAL API has changed somewhat
|
|
# since the last time that the conduit was compiled by the development
|
|
# team. Since we don't use the conduit it is disabled.
|
|
IF (MAL_FOUND)
|
|
add_subdirectory(malconduit)
|
|
ELSE (MAL_FOUND)
|
|
MESSAGE(STATUS "Couldn't find mal. Won't be able to build malconduit")
|
|
ENDIF (MAL_FOUND)
|
|
|