mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
40 lines
1.8 KiB
CMake
40 lines
1.8 KiB
CMake
############################################################################
|
|
# LinphoneCxxConfig.cmake
|
|
# Copyright (C) 2017 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.
|
|
#
|
|
############################################################################
|
|
#
|
|
# Config file for the Linphone++ package.
|
|
# Some components can be asked for: core, tester.
|
|
#
|
|
# It defines the following variables:
|
|
#
|
|
# LINPHONECXX_FOUND - system has linphone++
|
|
# LINPHONECXX_INCLUDE_DIRS - the linphone++ include directory
|
|
# LINPHONECXX_LIBRARIES - The libraries needed to use linphone++
|
|
# LINPHONECXX_LDFLAGS - The linking flags needed to use linphone++
|
|
|
|
find_package(BelleSIP)
|
|
find_package(Linphone)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/LinphoneCxxTargets.cmake")
|
|
get_filename_component(LINPHONECXX_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
set(LINPHONECXX_INCLUDE_DIRS "${LINPHONECXX_CMAKE_DIR}/../../../include" "${BELLESIP_INCLUDE_DIRS}" "${LINPHONE_INCLUDE_DIRS}")
|
|
set(LINPHONECXX_LDFLAGS "")
|
|
set(LINPHONECXX_LIBRARIES linphone++ ${BELLESIP_LIBRARIES} ${LINPHONE_LIBRARIES})
|
|
|