mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Add CMake option to enable/disable LIME.
This commit is contained in:
parent
a44891de7c
commit
02ce26850a
2 changed files with 5 additions and 0 deletions
|
|
@ -42,6 +42,7 @@ option(ENABLE_DATE "Use build date in internal version number." NO)
|
|||
option(ENABLE_DOC "Enable documentation generation with Doxygen." YES)
|
||||
option(ENABLE_GTK_UI "Turn on or off compilation of gtk interface." YES)
|
||||
option(ENABLE_LDAP "Enable LDAP support." NO)
|
||||
option(ENABLE_LIME "Enable Instant Messaging Encryption." NO)
|
||||
option(ENABLE_MSG_STORAGE "Turn on compilation of message storage." YES)
|
||||
cmake_dependent_option(ENABLE_NOTIFY "Enable libnotify support." YES "ENABLE_GTK_UI" NO)
|
||||
option(ENABLE_RELATIVE_PREFIX "Find resources relatively to the installation directory." NO)
|
||||
|
|
@ -135,6 +136,9 @@ endif()
|
|||
if(ENABLE_CALL_LOGS_STORAGE)
|
||||
find_package(Sqlite3 REQUIRED)
|
||||
endif()
|
||||
if(ENABLE_LIME)
|
||||
set(HAVE_LIME 1)
|
||||
endif()
|
||||
|
||||
if(UNIX AND NOT APPLE)
|
||||
include(CheckIncludeFiles)
|
||||
|
|
|
|||
|
|
@ -43,4 +43,5 @@
|
|||
#cmakedefine HAVE_CU_GET_SUITE 1
|
||||
#cmakedefine HAVE_CU_CURSES 1
|
||||
#cmakedefine HAVE_LIBUDEV_H 0
|
||||
#cmakedefine HAVE_LIME
|
||||
#cmakedefine ENABLE_NLS 1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue