Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
a221558d
Commit
a221558d
authored
Mar 08, 2018
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add minizip dependency.
parent
061fb744
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
3 deletions
+54
-3
CMakeLists.txt
CMakeLists.txt
+5
-2
FindMinizip.cmake
cmake/FindMinizip.cmake
+48
-0
linphoneqt.cmake
cmake_builder/linphoneqt.cmake
+1
-1
No files found.
CMakeLists.txt
View file @
a221558d
...
@@ -97,6 +97,8 @@ if (ENABLE_DBUS)
...
@@ -97,6 +97,8 @@ if (ENABLE_DBUS)
endif
()
endif
()
set
(
QT5_PACKAGES_OPTIONAL TextToSpeech
)
set
(
QT5_PACKAGES_OPTIONAL TextToSpeech
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake"
)
if
(
LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS
)
if
(
LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS
)
include
(
"
${
EP_linphone_CONFIG_DIR
}
/wrappers/cpp/LinphoneCxxConfig.cmake"
)
include
(
"
${
EP_linphone_CONFIG_DIR
}
/wrappers/cpp/LinphoneCxxConfig.cmake"
)
include
(
"
${
EP_bctoolbox_CONFIG_DIR
}
/BcToolboxConfig.cmake"
)
include
(
"
${
EP_bctoolbox_CONFIG_DIR
}
/BcToolboxConfig.cmake"
)
...
@@ -107,6 +109,7 @@ else ()
...
@@ -107,6 +109,7 @@ else ()
find_package
(
BcToolbox REQUIRED
)
find_package
(
BcToolbox REQUIRED
)
find_package
(
Belcard REQUIRED
)
find_package
(
Belcard REQUIRED
)
find_package
(
Mediastreamer2 REQUIRED
)
find_package
(
Mediastreamer2 REQUIRED
)
find_package
(
Minizip REQUIRED
)
endif
()
endif
()
set
(
SOURCES
set
(
SOURCES
...
@@ -366,8 +369,8 @@ endif ()
...
@@ -366,8 +369,8 @@ endif ()
set_target_properties
(
${
TARGET_NAME
}
PROPERTIES OUTPUT_NAME
"
${
EXECUTABLE_NAME
}
"
)
set_target_properties
(
${
TARGET_NAME
}
PROPERTIES OUTPUT_NAME
"
${
EXECUTABLE_NAME
}
"
)
set_target_properties
(
${
TESTER_TARGET_NAME
}
PROPERTIES OUTPUT_NAME
"
${
TESTER_EXECUTABLE_NAME
}
"
)
set_target_properties
(
${
TESTER_TARGET_NAME
}
PROPERTIES OUTPUT_NAME
"
${
TESTER_EXECUTABLE_NAME
}
"
)
set
(
INCLUDED_DIRECTORIES
"
${
LINPHONECXX_INCLUDE_DIRS
}
"
"
${
BELCARD_INCLUDE_DIRS
}
"
"
${
BCTOOLBOX_INCLUDE_DIRS
}
"
"
${
MEDIASTREAMER2_INCLUDE_DIRS
}
"
)
set
(
INCLUDED_DIRECTORIES
"
${
LINPHONECXX_INCLUDE_DIRS
}
"
"
${
BELCARD_INCLUDE_DIRS
}
"
"
${
BCTOOLBOX_INCLUDE_DIRS
}
"
"
${
MEDIASTREAMER2_INCLUDE_DIRS
}
"
"
${
MINIZIP_INCLUDE_DIRS
}
"
)
set
(
LIBRARIES
${
BCTOOLBOX_CORE_LIBRARIES
}
${
BELCARD_LIBRARIES
}
${
LINPHONECXX_LIBRARIES
}
)
set
(
LIBRARIES
${
BCTOOLBOX_CORE_LIBRARIES
}
${
BELCARD_LIBRARIES
}
${
LINPHONECXX_LIBRARIES
}
${
MINIZIP_LIBRARIES
}
)
foreach
(
package
${
QT5_PACKAGES
}
)
foreach
(
package
${
QT5_PACKAGES
}
)
list
(
APPEND INCLUDED_DIRECTORIES
"
${
Qt5
${
package
}
_INCLUDE_DIRS
}
"
)
list
(
APPEND INCLUDED_DIRECTORIES
"
${
Qt5
${
package
}
_INCLUDE_DIRS
}
"
)
...
...
cmake/FindMinizip.cmake
0 → 100644
View file @
a221558d
############################################################################
# FindMinizip.txt
# Copyright (C) 2018 Belledonne Communications, Grenoble France
#
############################################################################
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
############################################################################
#
# - Find the minizip include file and library
#
# MINIZIP_FOUND - system has minizip
# MINIZIP_INCLUDE_DIRS - the minizip include directory
# MINIZIP_LIBRARIES - The libraries needed to use minizip
find_path
(
MINIZIP_INCLUDE_DIRS
NAMES mz.h
PATH_SUFFIXES include
)
if
(
MINIZIP_INCLUDE_DIRS
)
set
(
HAVE_MZ_H 1
)
endif
()
find_library
(
MINIZIP_LIBRARIES
NAMES minizip minizipd
)
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
Minizip
DEFAULT_MSG
MINIZIP_INCLUDE_DIRS MINIZIP_LIBRARIES HAVE_MZ_H
)
mark_as_advanced
(
MINIZIP_INCLUDE_DIRS MINIZIP_LIBRARIES HAVE_MZ_H
)
cmake_builder/linphoneqt.cmake
View file @
a221558d
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
lcb_external_source_paths
(
".."
)
lcb_external_source_paths
(
".."
)
lcb_dependencies
(
"linphone"
"ms2plugins"
)
lcb_dependencies
(
"linphone"
"ms2plugins"
"minizip"
)
lcb_groupable
(
YES
)
lcb_groupable
(
YES
)
lcb_package_source
(
YES
)
lcb_package_source
(
YES
)
...
...
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