uvgrtp-base/CMakeLists.txt

265 lines
7.9 KiB
CMake

cmake_minimum_required(VERSION 3.14)
#
# Project Configuration
#
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_EXTENSIONS OFF)
include(cmake/ProjectDetails.cmake)
project(uvgrtp
VERSION ${uvgrtp_VER}
DESCRIPTION ${uvgrtp_DESCR}
HOMEPAGE_URL ${uvgrtp_URL}
LANGUAGES CXX)
include(cmake/FindDependencies.cmake)
include(cmake/Versioning.cmake)
option(DISABLE_CRYPTO "Do not build uvgRTP with crypto enabled" OFF)
add_library(${PROJECT_NAME})
set_target_properties(${PROJECT_NAME} PROPERTIES
SOVERSION ${PROJECT_VERSION_MAJOR}
VERSION ${LIBRARY_VERSION}
)
set(UVGRTP_CXX_FLAGS "")
set(UVGRTP_LINKER_FLAGS "")
target_sources(${PROJECT_NAME} PRIVATE
src/clock.cc
src/crypto.cc
src/frame.cc
src/hostname.cc
src/context.cc
src/media_stream.cc
src/mingw_inet.cc
src/multicast.cc
src/reception_flow.cc
src/poll.cc
src/frame_queue.cc
src/random.cc
src/rtcp.cc
src/rtp.cc
src/session.cc
src/socket.cc
src/zrtp.cc
src/holepuncher.cc
src/formats/media.cc
src/formats/h26x.cc
src/formats/h264.cc
src/formats/h265.cc
src/formats/h266.cc
src/zrtp/zrtp_receiver.cc
src/zrtp/hello.cc
src/zrtp/hello_ack.cc
src/zrtp/commit.cc
src/zrtp/dh_kxchng.cc
src/zrtp/confirm.cc
src/zrtp/confack.cc
src/zrtp/error.cc
src/zrtp/zrtp_message.cc
src/srtp/base.cc
src/srtp/srtp.cc
src/srtp/srtcp.cc
)
source_group(src/srtp src/srtp/.*)
source_group(src/formats src/formats/.*)
source_group(src/zrtp src/zrtp/.*)
source_group(src src/.*)
source_group(include include/.*)
# Including header files so VisualStudio will list them correctly
target_sources(${PROJECT_NAME} PRIVATE
src/random.hh
src/holepuncher.hh
src/hostname.hh
src/mingw_inet.hh
src/multicast.hh
src/reception_flow.hh
src/poll.hh
src/rtp.hh
src/zrtp.hh
src/frame_queue.hh
src/formats/h26x.hh
src/formats/h264.hh
src/formats/h265.hh
src/formats/h266.hh
src/formats/media.hh
src/srtp/base.hh
src/srtp/srtcp.hh
src/srtp/srtp.hh
src/zrtp/zrtp_receiver.hh
src/zrtp/hello.hh
src/zrtp/hello_ack.hh
src/zrtp/commit.hh
src/zrtp/dh_kxchng.hh
src/zrtp/defines.hh
src/zrtp/confirm.hh
src/zrtp/confack.hh
src/zrtp/error.hh
src/zrtp/zrtp_message.hh
src/srtp/base.hh
src/srtp/srtp.hh
src/srtp/srtcp.hh
include/uvgrtp/util.hh
include/uvgrtp/clock.hh
include/uvgrtp/context.hh
include/uvgrtp/crypto.hh
include/uvgrtp/debug.hh
include/uvgrtp/frame.hh
include/uvgrtp/lib.hh
include/uvgrtp/media_stream.hh
include/uvgrtp/rtcp.hh
include/uvgrtp/session.hh
include/uvgrtp/socket.hh
)
if(WIN32)
set(WINLIBS wsock32 ws2_32)
endif()
target_link_libraries(${PROJECT_NAME}
PRIVATE
Threads::Threads
${PROJECT_NAME}_version
${WINLIBS}
)
target_include_directories(${PROJECT_NAME}
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
PRIVATE $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/src>
PUBLIC $<INSTALL_INTERFACE:include>
)
if(MSVC)
target_compile_options(${PROJECT_NAME} PRIVATE /Zc:__cplusplus /W4)
else()
target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Wpedantic #[[-Werror]])
endif()
if (DISABLE_CRYPTO)
list(APPEND UVGRTP_CXX_FLAGS "-D__RTP_NO_CRYPTO__")
target_compile_definitions(${PROJECT_NAME} PRIVATE __RTP_NO_CRYPTO__)
endif()
if (UNIX)
# Try finding if pkg-config installed in the system
find_package(PkgConfig REQUIRED)
if(PkgConfig_FOUND)
list(APPEND UVGRTP_LINKER_FLAGS "-luvgrtp" "-lpthread")
# Check PKG_CONFIG_PATH, if not defined, use /usr/local/lib/pkgconfig
if(NOT DEFINED ENV{PKG_CONFIG_PATH})
set(PKG_CONFIG_PATH "/usr/local/lib/pkgconfig")
message("PKG_CONFIG_PATH is not set. Setting it to ${PKG_CONFIG_PATH}")
endif(NOT DEFINED ENV{PKG_CONFIG_PATH})
# Find crypto++
if(NOT DISABLE_CRYPTO)
pkg_search_module(CRYPTOPP libcrypto++)
if(CRYPTOPP_FOUND)
list(APPEND UVGRTP_CXX_FLAGS ${CRYPTOPP_CFLAGS_OTHER})
list(APPEND UVGRTP_LINKER_FLAGS ${CRYPTOPP_LDFLAGS})
else()
message("libcrypto++ not found. Encryption will be disabled")
list(APPEND UVGRTP_CXX_FLAGS "-D__RTP_NO_CRYPTO__")
endif()
endif()
# Generate and install .pc file
string(REPLACE ";" " " UVGRTP_CXX_FLAGS "${UVGRTP_CXX_FLAGS}")
string(REPLACE ";" " " UVGRTP_LINKER_FLAGS "${UVGRTP_LINKER_FLAGS}")
configure_file("cmake/uvgrtp.pc.in" "uvgrtp.pc" @ONLY)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/uvgrtp.pc DESTINATION ${PKG_CONFIG_PATH}/)
else()
message("pkg-config not found. Not generating pc file")
endif(PkgConfig_FOUND)
# Check the getrandom() function exists
include(CheckCXXSymbolExists)
check_cxx_symbol_exists(getrandom sys/random.h HAVE_GETRANDOM)
if(HAVE_GETRANDOM)
target_compile_definitions(${PROJECT_NAME} PRIVATE HAVE_GETRANDOM=1)
endif()
endif (UNIX)
add_subdirectory(test EXCLUDE_FROM_ALL)
#
# Install
#
# Define install target, install libraries and archives (static libraries) to "<prefix>/..."
include(GNUInstallDirs)
install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_version EXPORT ${PROJECT_NAME}Targets
LIBRARY
DESTINATION ${CMAKE_INSTALL_LIBDIR}
COMPONENT ${PROJECT_NAME}_Runtime
ARCHIVE
DESTINATION ${CMAKE_INSTALL_LIBDIR}
COMPONENT ${PROJECT_NAME}_Runtime
RUNTIME
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT ${PROJECT_NAME}_Runtime)
#Copy all header files to the <prefix>/include/uvgrtp directory
file(GLOB DEPLOY_FILES_AND_DIRS "${CMAKE_SOURCE_DIR}/include/uvgrtp/*")
install(FILES ${DEPLOY_FILES_AND_DIRS}
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}/
COMPONENT ${PROJECT_NAME}_Develop)
#Create a File representing the current library version
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/${PROJECT_NAME}ConfigVersion.cmake"
COMPATIBILITY SameMajorVersion
)
#Create a Targets file representing exported targets (for usage within the build tree)
export(EXPORT ${PROJECT_NAME}Targets
FILE "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/${PROJECT_NAME}Targets.cmake"
NAMESPACE ${PROJECT_NAME}::
)
#Copy "cmake/uvgrtpConfig.cmake" to "${CMAKE_CURRENT_BINARY_DIR}/uvgrtp/uvgrtpConfig.cmake"
configure_file(cmake/${PROJECT_NAME}Config.cmake
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/${PROJECT_NAME}Config.cmake"
COPYONLY
)
#Copy "cmake/uvgrtpMacros.cmake" to "${CMAKE_CURRENT_BINARY_DIR}/uvgrtp/uvgrtpMacros.cmake"
configure_file(cmake/${PROJECT_NAME}Macros.cmake
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/${PROJECT_NAME}Macros.cmake"
COPYONLY
)
#
# Adding target to installing cmake package
#
set(ConfigPackageLocation lib/cmake/${PROJECT_NAME})
install(EXPORT ${PROJECT_NAME}Targets
FILE ${PROJECT_NAME}Targets.cmake
NAMESPACE ${PROJECT_NAME}::
DESTINATION ${ConfigPackageLocation}
)
install(FILES cmake/${PROJECT_NAME}Config.cmake cmake/${PROJECT_NAME}Macros.cmake
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/${PROJECT_NAME}ConfigVersion.cmake"
DESTINATION ${ConfigPackageLocation}
COMPONENT uvgRTPMain
)
#
# Packaging
#
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
add_subdirectory(packaging)
endif()