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
belle-sip
Commits
3c31c3ad
Commit
3c31c3ad
authored
7 months ago
by
Ghislain MARY
Browse files
Options
Download
Patches
Plain Diff
Add option to enable build of SIP parser benchmark.
parent
7cfda358
master
fix/auth_info_replacement
fix/fixes-from-5.4-march
fix/fixes-from-5.4-march-2
fix/ios_build_add_libbelle-sip-tester_framework
release/5.4
5.5.0-alpha
5.4.7
5.4.2
5.4.1
5.4.0
5.4.0-beta
1 merge request
!374
Add option to enable build of SIP parser benchmark.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+1
-0
CMakeLists.txt
tester/CMakeLists.txt
+1
-1
tester/CMakeLists.txt
with
2 additions
and
1 deletion
CMakeLists.txt
+
1
−
0
View file @
3c31c3ad
...
...
@@ -36,6 +36,7 @@ set(BELLESIP_SO_VERSION 1) # set for 4.4.0 release.
option
(
ENABLE_RTP_MAP_ALWAYS_IN_SDP
"Always include rtpmap in SDP."
OFF
)
option
(
ENABLE_SIP_PARSER_BENCHMARK
"Enable build of SIP parser benchmark."
OFF
)
option
(
ENABLE_STRICT
"Build with strict compile options."
YES
)
option
(
ENABLE_TUNNEL
"Enable tunnel support"
OFF
)
option
(
ENABLE_UNIT_TESTS
"Enable compilation of tests"
ON
)
...
...
This diff is collapsed.
Click to expand it.
tester/CMakeLists.txt
+
1
−
1
View file @
3c31c3ad
...
...
@@ -187,7 +187,7 @@ elseif(NOT ANDROID)
endif
()
target_link_libraries
(
belle-sip-http-get PRIVATE
${
BCToolbox_TARGET
}
belle-sip
)
if
(
NOT WIN32
)
if
(
ENABLE_SIP_PARSER_BENCHMARK
)
set
(
BENCH_SOURCES bench.cc
)
add_executable
(
belle-sip-bench
${
USE_BUNDLE
}
${
BENCH_SOURCES
}
)
set_target_properties
(
belle-sip-bench PROPERTIES LINKER_LANGUAGE CXX CXX_STANDARD 17 CXX_STANDARD_REQUIRED TRUE
)
...
...
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