diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c1c568497..8a58b4f08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,17 @@ option( WITH_SASL "Enable cyrus-sasl support" OFF ) option( WITH_NEWDISTRLISTS "Enable the new distribution lists" ON ) option( WITH_GNOKII "Enable gnokii support" OFF ) option( WITH_EXCHANGE "Enable Microsoft Exchange 2000 support" OFF ) +option( WITH_EGROUPWARE "Enable egroupware support" OFF ) +option( WITH_KOLAB "Enable kolab support" OFF ) +option( WITH_SLOX "Enable slox support" OFF ) +option( WITH_GROUPWISE "Enable groupwise support" OFF ) +option( WITH_FEATUREPLAN "Enable featureplan support" OFF ) +option( WITH_GROUPDAV "Enable groupdav support" OFF ) +option( WITH_BIRTHDAYS "Enable birthdays support" OFF ) +option( WITH_NEWEXCHANGE "Enable newexchange support" OFF ) +option( WITH_SCALIX "Enable scalix support" OFF ) +option( WITH_CALDAV "Enable caldav support" OFF ) +option( WITH_CARDDAV "Enable carddav support" OFF ) if( NOT WITH_ARTS ) set( WITHOUT_ARTS 1 ) @@ -81,6 +92,11 @@ option( BUILD_KORN "Build korn" ${BUILD_ALL} ) option( BUILD_KGANTT "Build kgantt" ${BUILD_ALL} ) option( BUILD_LIBKHOLIDAYS "Build libkholidays" ${BUILD_ALL} ) option( BUILD_KORGANIZER "Build korganizer" ${BUILD_ALL} ) +option( BUILD_PLUGINS "Build plugins" ${BUILD_ALL} ) +option( BUILD_KNOTES "Build knotes" ${BUILD_ALL} ) +option( BUILD_KODE "Build kode" ${BUILD_ALL} ) +option( BUILD_KRESOURCES "Build kresources" ${BUILD_ALL} ) +option( BUILD_WIZARDS "Build wizards" ${BUILD_ALL} ) ##### configure checks ########################## @@ -106,6 +122,10 @@ if( BUILD_LIBKCAL OR BUILD_LIBKDEPIM OR BUILD_LIBKPIMIDENTITIES OR BUILD_KIOSLAV add_subdirectory( libemailfunctions ) endif() +if( BUILD_KADDRESSBOOK OR (BUILD_KRESOURCES AND (WITH_EGROUPWARE OR WITH_BIRTHDAYS)) ) + add_subdirectory( kaddressbook/common ) +endif() + ##### kdepim directories ######################## @@ -131,6 +151,11 @@ tde_conditional_add_subdirectory( BUILD_KGANTT kgantt ) tde_conditional_add_subdirectory( BUILD_LIBKHOLIDAYS libkholidays ) tde_conditional_add_subdirectory( BUILD_KORGANIZER kdgantt ) tde_conditional_add_subdirectory( BUILD_KORGANIZER korganizer ) +tde_conditional_add_subdirectory( BUILD_PLUGINS plugins ) +tde_conditional_add_subdirectory( BUILD_KNOTES knotes ) +tde_conditional_add_subdirectory( BUILD_KODE kode ) +tde_conditional_add_subdirectory( BUILD_KRESOURCES kresources ) +tde_conditional_add_subdirectory( BUILD_WIZARDS wizards ) ##### write configure files ##################### |