Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
02ce2685
Commit
02ce2685
authored
9 years ago
by
Ghislain MARY
Browse files
Options
Download
Patches
Plain Diff
Add CMake option to enable/disable LIME.
parent
a44891de
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+4
-0
CMakeLists.txt
config.h.cmake
+1
-0
config.h.cmake
with
5 additions
and
0 deletions
CMakeLists.txt
+
4
−
0
View file @
02ce2685
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
config.h.cmake
+
1
−
0
View file @
02ce2685
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets