mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 12:08:11 +00:00
Dissociate activation of message storage and call logs storage when building with CMake.
This commit is contained in:
parent
c1f90bf283
commit
7de610bd9b
1 changed files with 6 additions and 2 deletions
|
|
@ -169,8 +169,12 @@ if(ZLIB_FOUND)
|
|||
endif()
|
||||
if(SQLITE3_FOUND)
|
||||
include_directories(${SQLITE3_INCLUDE_DIRS})
|
||||
add_definitions("-DMSG_STORAGE_ENABLED")
|
||||
add_definitions("-DCALL_LOGS_STORAGE_ENABLED")
|
||||
if(ENABLE_MSG_STORAGE)
|
||||
add_definitions("-DMSG_STORAGE_ENABLED")
|
||||
endif()
|
||||
if(ENABLE_CALL_LOGS_STORAGE)
|
||||
add_definitions("-DCALL_LOGS_STORAGE_ENABLED")
|
||||
endif()
|
||||
endif()
|
||||
if(INTL_FOUND)
|
||||
set(HAVE_INTL 1)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue