Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
linphone-cmake-builder
Commits
0433ac7b
Commit
0433ac7b
authored
Oct 16, 2017
by
Erwan Croze
👋🏻
Browse files
Add conference option to flexisip
parent
270a5b24
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
builders/flexisip.cmake
builders/flexisip.cmake
+1
-0
configs/config-flexisip.cmake
configs/config-flexisip.cmake
+1
-0
options/flexisip.cmake
options/flexisip.cmake
+1
-0
No files found.
builders/flexisip.cmake
View file @
0433ac7b
...
...
@@ -54,6 +54,7 @@ lcb_builder_cmake_options("flexisip"
"-DENABLE_SOCI=
${
ENABLE_SOCI
}
"
"-DENABLE_PUSHNOTIFICATION=
${
ENABLE_PUSHNOTIFICATION
}
"
"-DENABLE_PRESENCE=
${
ENABLE_PRESENCE
}
"
"-DENABLE_CONFERENCE=
${
ENABLE_CONFERENCE
}
"
"-DXSDCXX_ROOT_PATH=
${
XSDCXX_ROOT_PATH
}
"
"-DENABLE_SNMP=
${
ENABLE_SNMP
}
"
"-DENABLE_DOC=
${
ENABLE_DOC
}
"
...
...
configs/config-flexisip.cmake
View file @
0433ac7b
...
...
@@ -30,6 +30,7 @@ set(DEFAULT_VALUE_ENABLE_PUSHNOTIFICATION ON)
set
(
DEFAULT_VALUE_ENABLE_REDIS ON
)
set
(
DEFAULT_VALUE_ENABLE_UNIT_TESTS OFF
)
set
(
DEFAULT_VALUE_ENABLE_PRESENCE OFF
)
set
(
DEFAULT_VALUE_ENABLE_CONFERENCE OFF
)
set
(
DEFAULT_VALUE_ENABLE_SNMP ON
)
set
(
DEFAULT_VALUE_ENABLE_POLARSSL ON
)
set
(
DEFAULT_VALUE_ENABLE_PROTOBUF OFF
)
...
...
options/flexisip.cmake
View file @
0433ac7b
...
...
@@ -29,6 +29,7 @@ lcb_add_option("REDIS" "Enable hiredis support." "${DEFAULT_VALUE_ENABLE_REDIS}"
lcb_add_dependent_option
(
"BC REDIS"
"Enable hiredis support from Belledonne Communications."
"
${
DEFAULT_VALUE_ENABLE_BC_HIREDIS
}
"
"ENABLE_REDIS"
OFF
)
lcb_add_option
(
"PushNotification"
"Enable push notification support."
"
${
DEFAULT_VALUE_ENABLE_PUSHNOTIFICATION
}
"
)
lcb_add_option
(
"Presence"
"Enable presence server support."
"
${
DEFAULT_VALUE_ENABLE_PRESENCE
}
"
)
lcb_add_option
(
"Conference"
"Enable conference server support."
"
${
DEFAULT_VALUE_ENABLE_CONFERENCE
}
"
)
lcb_add_option
(
"SNMP"
"Enable SNMP support."
"
${
DEFAULT_ENABLE_SNMP
}
"
)
lcb_add_option
(
"SOCI"
"Enable SOCI support."
"
${
DEFAULT_ENABLE_SOCI
}
"
)
lcb_add_dependent_option
(
"SOCI build"
"Build SOCI from sources instead of taking the operating system version."
"
${
DEFAULT_VALUE_ENABLE_SOCI_BUILD
}
"
"ENABLE_SOCI"
OFF
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment