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
belle-sip
Commits
a17dfa95
Commit
a17dfa95
authored
Oct 09, 2015
by
Ghislain MARY
Browse files
Allow inclusion of tunnel CMake project in a global CMake project.
parent
4fd951be
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
a17dfa95
...
...
@@ -89,7 +89,11 @@ if(ENABLE_TLS)
endif
()
endif
()
if
(
ENABLE_TUNNEL
)
find_package
(
Tunnel
)
if
(
LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS
)
include
(
"
${
EP_tunnel_CONFIG_DIR
}
/TunnelConfig.cmake"
)
else
()
find_package
(
Tunnel
)
endif
()
if
(
TUNNEL_FOUND
)
set
(
HAVE_TUNNEL 1
)
else
()
...
...
cmake/BelleSIPConfig.cmake.in
View file @
a17dfa95
...
...
@@ -33,7 +33,11 @@ if(NOT LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS)
endif()
if(@ENABLE_TUNNEL@)
find_package(Tunnel)
if(LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS)
include("${EP_tunnel_CONFIG_DIR}/TunnelConfig.cmake")
else()
find_package(Tunnel)
endif()
endif()
get_filename_component(BELLESIP_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
...
...
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