mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 16:49:20 +00:00
294 lines
8.4 KiB
CMake
294 lines
8.4 KiB
CMake
############################################################################
|
|
# CMakeLists.txt
|
|
# Copyright (C) 2014 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.
|
|
#
|
|
############################################################################
|
|
|
|
if(MSVC AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone" AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
find_library(LIBGCC NAMES gcc)
|
|
find_library(LIBMINGWEX NAMES mingwex)
|
|
endif()
|
|
|
|
if(NOT WIN32)
|
|
find_package(Iconv QUIET)
|
|
endif()
|
|
if(ANDROID)
|
|
find_package(CpuFeatures REQUIRED)
|
|
find_package(Support REQUIRED)
|
|
endif()
|
|
|
|
|
|
set(LINPHONE_PRIVATE_HEADER_FILES
|
|
bellesip_sal/sal_impl.h
|
|
CardDav.h
|
|
Conference.h
|
|
ContactProvider.h
|
|
Enum.h
|
|
Lime.h
|
|
Lpc2Xml.h
|
|
OfferAnswer.h
|
|
private.h
|
|
QualityReporting.h
|
|
Sqlite3BctbxVfs.h
|
|
Vcard.h
|
|
Xml2Lpc.h
|
|
)
|
|
|
|
set(LINPHONE_SOURCE_FILES_C
|
|
bellesip_sal/sal_address_impl.cc
|
|
bellesip_sal/sal_impl.cc
|
|
bellesip_sal/sal_op_call.cc
|
|
bellesip_sal/sal_op_call_transfer.cc
|
|
bellesip_sal/sal_op_events.cc
|
|
bellesip_sal/sal_op_impl.cc
|
|
bellesip_sal/sal_op_info.cc
|
|
bellesip_sal/sal_op_message.cc
|
|
bellesip_sal/sal_op_presence.cc
|
|
bellesip_sal/sal_op_publish.cc
|
|
bellesip_sal/sal_op_registration.cc
|
|
bellesip_sal/sal_sdp.cc
|
|
)
|
|
set(LINPHONE_SOURCE_FILES_CXX
|
|
AccountCreator.cc
|
|
AccountCreatorService.cc
|
|
Address.cc
|
|
Authentication.cc
|
|
Buffer.cc
|
|
Call.cc
|
|
Callbacks.cc
|
|
CallLog.cc
|
|
CallParams.cc
|
|
CardDav.cc
|
|
Chat.cc
|
|
ChatFileTransfer.cc
|
|
Conference.cc
|
|
Config.cc
|
|
ContactProvider.cc
|
|
Content.cc
|
|
Core.cc
|
|
DialPlan.cc
|
|
Dict.cc
|
|
EcCalibrator.cc
|
|
EchoTester.cc
|
|
Enum.cc
|
|
ErrorInfo.cc
|
|
Event.cc
|
|
Factory.cc
|
|
Friend.cc
|
|
FriendList.cc
|
|
ImEncryptionEngine.cc
|
|
ImNotifPolicy.cc
|
|
Info.cc
|
|
LdapProvider.cc
|
|
Lime.cc
|
|
LocalPlayer.cc
|
|
Lpc2Xml.cc
|
|
Lsd.cc
|
|
MessageStorage.cc
|
|
Misc.cc
|
|
NatPolicy.cc
|
|
OfferAnswer.cc
|
|
PayloadType.cc
|
|
Player.cc
|
|
Presence.cc
|
|
Proxy.cc
|
|
QualityReporting.cc
|
|
RemoteProvisioning.cc
|
|
RingTonePlayer.cc
|
|
Sal.cc
|
|
SipLogin.cc
|
|
SipSetup.cc
|
|
Sqlite3BctbxVfs.cc
|
|
TunnelConfig.cc
|
|
VideoDefinition.cc
|
|
Vtables.cc
|
|
Xml.cc
|
|
Xml2Lpc.cc
|
|
XmlRpc.cc
|
|
)
|
|
|
|
if(ANDROID)
|
|
list(APPEND LINPHONE_SOURCE_FILES_CXX linphonecore_jni.cc)
|
|
set_source_files_properties(linphonecore_jni.cc PROPERTIES COMPILE_DEFINITIONS "USE_JAVAH")
|
|
endif()
|
|
|
|
set(LINPHONE_SOURCE_FILES_OBJC)
|
|
if (IOS)
|
|
list(APPEND LINPHONE_SOURCE_FILES_OBJC ringtoneplayer_ios.m ringtoneplayer_ios.h)
|
|
list(APPEND LINPHONE_SOURCE_FILES_CXX linphonecore_ios.cc)
|
|
endif()
|
|
|
|
|
|
if(ENABLE_TUNNEL)
|
|
list(APPEND LINPHONE_SOURCE_FILES_CXX
|
|
Tunnel.cc
|
|
TunnelManager.cc
|
|
)
|
|
add_definitions(-DTUNNEL_ENABLED)
|
|
else()
|
|
list(APPEND LINPHONE_SOURCE_FILES_CXX TunnelStubs.cc)
|
|
endif()
|
|
|
|
bc_git_version(liblinphone ${PROJECT_VERSION})
|
|
|
|
add_definitions(
|
|
-DUSE_BELLESIP
|
|
-DLIBLINPHONE_EXPORTS
|
|
)
|
|
|
|
set(LIBS
|
|
${BCTOOLBOX_CORE_LIBRARIES}
|
|
${BELLESIP_LIBRARIES}
|
|
${MEDIASTREAMER2_LIBRARIES}
|
|
${ORTP_LIBRARIES}
|
|
${XML2_LIBRARIES}
|
|
)
|
|
if(WIN32 AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
list(APPEND LIBS "Ws2_32")
|
|
endif()
|
|
if(ENABLE_LIME)
|
|
list(APPEND LIBS ${BZRTP_LIBRARIES})
|
|
endif()
|
|
if(ZLIB_FOUND)
|
|
list(APPEND LIBS ${ZLIB_LIBRARIES})
|
|
endif()
|
|
if(SQLITE3_FOUND)
|
|
list(APPEND LIBS ${SQLITE3_LIBRARIES})
|
|
endif()
|
|
if(ICONV_FOUND)
|
|
list(APPEND LIBS ${ICONV_LIBRARIES})
|
|
endif()
|
|
if(ENABLE_TUNNEL)
|
|
list(APPEND LIBS ${TUNNEL_LIBRARIES})
|
|
endif()
|
|
if(MSVC AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone" AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
list(APPEND LIBS ${LIBGCC} ${LIBMINGWEX})
|
|
endif()
|
|
if(WIN32 AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone" AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
list(APPEND LIBS shlwapi)
|
|
endif()
|
|
if(INTL_FOUND)
|
|
list(APPEND LIBS ${INTL_LIBRARIES})
|
|
endif()
|
|
if(BELCARD_FOUND)
|
|
list(APPEND LIBS ${BELCARD_LIBRARIES})
|
|
list(APPEND LINPHONE_SOURCE_FILES_CXX Vcard.cc)
|
|
if(NOT MSVC)
|
|
list(APPEND STRICT_OPTIONS_CXX "-std=c++11")
|
|
endif()
|
|
if(APPLE)
|
|
list(APPEND STRICT_OPTIONS_CXX "-stdlib=libc++")
|
|
endif()
|
|
else()
|
|
list(APPEND LINPHONE_SOURCE_FILES_CXX VcardStubs.c)
|
|
endif()
|
|
|
|
bc_apply_compile_flags(LINPHONE_SOURCE_FILES_C STRICT_OPTIONS_CPP STRICT_OPTIONS_C)
|
|
bc_apply_compile_flags(LINPHONE_SOURCE_FILES_CXX STRICT_OPTIONS_CPP STRICT_OPTIONS_CXX)
|
|
bc_apply_compile_flags(LINPHONE_SOURCE_FILES_OBJC STRICT_OPTIONS_CPP STRICT_OPTIONS_OBJC)
|
|
|
|
if(ENABLE_STATIC)
|
|
add_library(linphone-static STATIC ${LINPHONE_HEADER_FILES} ${LINPHONE_PRIVATE_HEADER_FILES} ${LINPHONE_SOURCE_FILES_C} ${LINPHONE_SOURCE_FILES_CXX} ${LINPHONE_SOURCE_FILES_OBJC})
|
|
set_target_properties(linphone-static PROPERTIES OUTPUT_NAME linphone)
|
|
add_dependencies(linphone-static liblinphone-git-version)
|
|
target_include_directories(linphone-static PUBLIC ${LINPHONE_INCLUDE_DIRS})
|
|
target_link_libraries(linphone-static INTERFACE ${LIBS})
|
|
if(ANDROID)
|
|
add_dependencies(linphone-static linphonecore-jni-header)
|
|
endif()
|
|
if(IOS)
|
|
target_link_libraries(linphone-static INTERFACE "-framework Foundation" "-framework AVFoundation")
|
|
endif()
|
|
install(TARGETS linphone-static EXPORT ${EXPORT_TARGETS_NAME}Targets
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
|
)
|
|
endif()
|
|
if(ENABLE_SHARED)
|
|
add_library(linphone SHARED ${LINPHONE_HEADER_FILES} ${LINPHONE_PRIVATE_HEADER_FILES} ${LINPHONE_SOURCE_FILES_C} ${LINPHONE_SOURCE_FILES_CXX} ${LINPHONE_SOURCE_FILES_OBJC})
|
|
if(IOS)
|
|
if(IOS)
|
|
set(MIN_OS ${LINPHONE_IOS_DEPLOYMENT_TARGET})
|
|
else()
|
|
set(MIN_OS ${CMAKE_OSX_DEPLOYMENT_TARGET})
|
|
endif()
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/build/osx/")
|
|
set_target_properties(linphone PROPERTIES
|
|
FRAMEWORK TRUE
|
|
MACOSX_FRAMEWORK_IDENTIFIER org.linphone.linphone
|
|
MACOSX_FRAMEWORK_INFO_PLIST Info.plist.in
|
|
PUBLIC_HEADER "${LINPHONE_HEADER_FILES}"
|
|
)
|
|
endif()
|
|
if(BELCARD_FOUND)
|
|
if(APPLE)
|
|
set_target_properties(linphone PROPERTIES LINK_FLAGS "-stdlib=libc++")
|
|
endif()
|
|
endif()
|
|
|
|
set_target_properties(linphone PROPERTIES LINKER_LANGUAGE CXX)
|
|
if(NOT ANDROID)
|
|
# Do not version shared library on Android
|
|
set_target_properties(linphone PROPERTIES SOVERSION ${LINPHONE_SO_VERSION})
|
|
endif()
|
|
add_dependencies(linphone liblinphone-git-version)
|
|
target_include_directories(linphone PUBLIC ${LINPHONE_INCLUDE_DIRS})
|
|
target_link_libraries(linphone PRIVATE ${LIBS})
|
|
if(WIN32 AND CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone" AND NOT CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
|
set_target_properties(linphone PROPERTIES PREFIX "lib")
|
|
elseif(ANDROID)
|
|
target_link_libraries(linphone PUBLIC "log" ${SUPPORT_LIBRARIES} ${CPUFEATURES_LIBRARIES})
|
|
add_dependencies(linphone linphonecore-jni-header)
|
|
endif()
|
|
if(MSVC)
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}/linphone.pdb
|
|
DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
|
)
|
|
endif()
|
|
endif()
|
|
install(TARGETS linphone EXPORT ${EXPORT_TARGETS_NAME}Targets
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
FRAMEWORK DESTINATION Frameworks
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
|
|
)
|
|
endif()
|
|
if(ICONV_FOUND)
|
|
if(APPLE)
|
|
# Prevent conflict between the system iconv.h header and the one from macports.
|
|
if(ENABLE_STATIC)
|
|
target_compile_options(linphone-static PRIVATE "-include" "${ICONV_INCLUDE_DIRS}/iconv.h")
|
|
endif()
|
|
if(ENABLE_SHARED)
|
|
target_compile_options(linphone PRIVATE "-include" "${ICONV_INCLUDE_DIRS}/iconv.h")
|
|
endif()
|
|
else()
|
|
if(ENABLE_STATIC)
|
|
target_include_directories(linphone-static PRIVATE ${ICONV_INCLUDE_DIRS})
|
|
endif()
|
|
if(ENABLE_SHARED)
|
|
target_include_directories(linphone PRIVATE ${ICONV_INCLUDE_DIRS})
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
add_subdirectory(help)
|