############################################################################ # BcToolboxConfig.cmake # Copyright (C) 2015 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################ # # Config file for the belle-sip package. # It defines the following variables: # # BCTOOLBOX_FOUND - system has bctoolbox # BCTOOLBOX_INCLUDE_DIRS - the bctoolbox include directory # BCTOOLBOX_LIBRARIES - The libraries needed to use bctoolbox # BCTOOLBOX_LDFLAGS - The linking flags needed to use bctoolbox if(NOT LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS) include("${CMAKE_CURRENT_LIST_DIR}/BcToolboxTargets.cmake") endif() get_filename_component(BCTOOLBOX_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) if(LINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS) set(BCTOOLBOX_INCLUDE_DIRS "${EP_bctoolbox_INCLUDE_DIR}") else() set(BCTOOLBOX_INCLUDE_DIRS "${BCTOOLBOX_CMAKE_DIR}/../../../include") endif() set(BCTOOLBOX_LIBRARIES bctoolbox) set(BCTOOLBOX_LDFLAGS "@LINK_FLAGS_STR@") set(BCTOOLBOX_FOUND 1)