From 77d5afb6c56c05211f79fe1b1656837a854bc650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Fri, 19 Oct 2018 02:35:22 +0200 Subject: cmake: Add options WITH_SSL and WITH_MLED Fix test for SSL => is not needed, because is used KSSL from tdelibs Fix test for ASUS Mail LED support in ACPI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit 3e2052d2d451a77852c362f6b8812f74f4648739) --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 3562e3f..06bb19a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,6 +42,8 @@ tde_setup_paths( ) option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) +option( WITH_SSL "Build with SSL (imap4s and pop3s) protocol support" ${WITH_ALL_OPTIONS} ) +option( WITH_MLED "Compile with support for Mail LED on ASUS notebooks" OFF ) ##### user requested modules @@ -51,6 +53,11 @@ option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} ) +##### user defined options ####### + +set( _PATH_MAILDIR "/var/spool/mail" CACHE STRING "Path for the mail spool" ) + + ##### configure checks include( ConfigureChecks.cmake ) -- cgit v1.2.1