2017-01-16 00:16:16 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# The main toxcore CMake build file.
|
|
|
|
#
|
|
|
|
# This file when processed with cmake produces:
|
|
|
|
# - A number of small libraries (.a/.so/...) containing independent components
|
|
|
|
# of toxcore. E.g. the DHT has its own library, and the system/network
|
|
|
|
# abstractions are in their own library as well. These libraries are not
|
2017-12-29 08:29:14 +08:00
|
|
|
# installed on `make install`. The toxav, and toxencryptsave libraries are
|
|
|
|
# also not installed.
|
2017-01-16 00:16:16 +08:00
|
|
|
# - A number of small programs, statically linked if possible.
|
2017-12-29 08:29:14 +08:00
|
|
|
# - One big library containing all of the toxcore, toxav, and toxencryptsave
|
|
|
|
# code.
|
2017-01-16 00:16:16 +08:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-02-12 18:56:10 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
cmake_policy(VERSION 2.8.12)
|
2016-08-10 19:28:33 +08:00
|
|
|
project(toxcore)
|
|
|
|
|
2020-05-14 07:50:43 +08:00
|
|
|
list(APPEND CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
|
2017-01-16 04:22:35 +08:00
|
|
|
|
2022-02-08 06:38:26 +08:00
|
|
|
set_source_files_properties(
|
|
|
|
other/bootstrap_daemon/src/tox-bootstrapd.c
|
|
|
|
toxcore/mono_time.c
|
|
|
|
toxcore/network.c
|
|
|
|
toxcore/tox.c
|
|
|
|
toxcore/util.c
|
|
|
|
PROPERTIES SKIP_UNITY_BUILD_INCLUSION TRUE)
|
|
|
|
|
2017-01-16 04:22:35 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Version management
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
# This version is for the entire project. All libraries (core, av, ...) move in
|
|
|
|
# versions in a synchronised way.
|
2016-09-24 06:34:16 +08:00
|
|
|
set(PROJECT_VERSION_MAJOR "0")
|
2018-01-09 03:36:00 +08:00
|
|
|
set(PROJECT_VERSION_MINOR "2")
|
2022-02-19 07:49:13 +08:00
|
|
|
set(PROJECT_VERSION_PATCH "16")
|
2017-01-16 04:22:35 +08:00
|
|
|
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
|
|
|
|
|
|
|
|
# set .so library version / following libtool scheme
|
|
|
|
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
|
|
|
|
file(STRINGS ${toxcore_SOURCE_DIR}/so.version SOVERSION_CURRENT REGEX "^CURRENT=[0-9]+$")
|
|
|
|
string(SUBSTRING "${SOVERSION_CURRENT}" 8 -1 SOVERSION_CURRENT)
|
|
|
|
file(STRINGS ${toxcore_SOURCE_DIR}/so.version SOVERSION_REVISION REGEX "^REVISION=[0-9]+$")
|
|
|
|
string(SUBSTRING "${SOVERSION_REVISION}" 9 -1 SOVERSION_REVISION)
|
|
|
|
file(STRINGS ${toxcore_SOURCE_DIR}/so.version SOVERSION_AGE REGEX "^AGE=[0-9]+$")
|
|
|
|
string(SUBSTRING "${SOVERSION_AGE}" 4 -1 SOVERSION_AGE)
|
|
|
|
# account for some libtool magic, see other/version-sync script for details
|
|
|
|
math(EXPR SOVERSION_MAJOR ${SOVERSION_CURRENT}-${SOVERSION_AGE})
|
|
|
|
set(SOVERSION "${SOVERSION_MAJOR}.${SOVERSION_AGE}.${SOVERSION_REVISION}")
|
|
|
|
message("SOVERSION: ${SOVERSION}")
|
2016-08-11 20:49:49 +08:00
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
2016-08-16 05:07:49 +08:00
|
|
|
# :: Dependencies and configuration
|
2016-08-10 19:28:33 +08:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-10-09 07:33:40 +08:00
|
|
|
include(CTest)
|
2017-01-16 00:16:16 +08:00
|
|
|
include(ModulePackage)
|
2017-06-04 20:20:35 +08:00
|
|
|
include(StrictAbi)
|
2018-01-15 19:23:33 +08:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
include(MacRpath)
|
|
|
|
endif()
|
2016-09-12 01:49:44 +08:00
|
|
|
|
2017-08-06 19:28:16 +08:00
|
|
|
enable_testing()
|
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
set(CMAKE_MACOSX_RPATH ON)
|
|
|
|
|
2018-07-16 05:33:56 +08:00
|
|
|
if(${CMAKE_VERSION} VERSION_LESS "3.1.0")
|
|
|
|
if(NOT MSVC)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
endif()
|
|
|
|
else()
|
2018-02-12 18:56:10 +08:00
|
|
|
# Set standard version for compiler.
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(CMAKE_C_EXTENSIONS OFF)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
|
|
|
|
message(STATUS "Supported C compiler features = ${CMAKE_C_COMPILE_FEATURES}")
|
|
|
|
message(STATUS "Supported C++ compiler features = ${CMAKE_CXX_COMPILE_FEATURES}")
|
|
|
|
endif()
|
2017-01-21 01:42:30 +08:00
|
|
|
|
2018-10-03 19:49:17 +08:00
|
|
|
set(MIN_LOGGER_LEVEL "" CACHE STRING "Logging level to use (TRACE, DEBUG, INFO, WARNING, ERROR)")
|
2016-10-01 02:13:29 +08:00
|
|
|
if(MIN_LOGGER_LEVEL)
|
2018-10-03 19:49:17 +08:00
|
|
|
if(("${MIN_LOGGER_LEVEL}" STREQUAL "TRACE") OR
|
|
|
|
("${MIN_LOGGER_LEVEL}" STREQUAL "DEBUG") OR
|
|
|
|
("${MIN_LOGGER_LEVEL}" STREQUAL "INFO") OR
|
|
|
|
("${MIN_LOGGER_LEVEL}" STREQUAL "WARNING") OR
|
|
|
|
("${MIN_LOGGER_LEVEL}" STREQUAL "ERROR"))
|
|
|
|
add_definitions(-DMIN_LOGGER_LEVEL=LOGGER_LEVEL_${MIN_LOGGER_LEVEL})
|
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Unknown value provided for MIN_LOGGER_LEVEL: \"${MIN_LOGGER_LEVEL}\", must be one of TRACE, DEBUG, INFO, WARNING or ERROR")
|
|
|
|
endif()
|
2016-10-01 02:13:29 +08:00
|
|
|
endif()
|
|
|
|
|
2017-11-15 17:48:48 +08:00
|
|
|
option(USE_IPV6 "Use IPv6 in tests" ON)
|
|
|
|
if(NOT USE_IPV6)
|
|
|
|
add_definitions(-DUSE_IPV6=0)
|
|
|
|
endif()
|
|
|
|
|
2018-03-17 22:48:34 +08:00
|
|
|
option(USE_STDERR_LOGGER "Enable logging to stderr when the logger is NULL" OFF)
|
|
|
|
if(USE_STDERR_LOGGER)
|
|
|
|
add_definitions(-DUSE_STDERR_LOGGER=1)
|
|
|
|
endif()
|
|
|
|
|
2020-04-29 20:09:34 +08:00
|
|
|
option(NON_HERMETIC_TESTS "Whether to build and run tests that depend on an internet connection" OFF)
|
|
|
|
|
2017-02-21 06:33:50 +08:00
|
|
|
option(BUILD_TOXAV "Whether to build the tox AV library" ON)
|
2018-02-22 21:56:11 +08:00
|
|
|
option(MUST_BUILD_TOXAV "Fail the build if toxav cannot be built" OFF)
|
2017-02-21 06:33:50 +08:00
|
|
|
|
2020-05-14 07:50:43 +08:00
|
|
|
if(MSVC)
|
|
|
|
option(MSVC_STATIC_SODIUM "Whether to link libsodium statically for MSVC" OFF)
|
|
|
|
if(MSVC_STATIC_SODIUM)
|
|
|
|
add_definitions(-DSODIUM_STATIC=1 -DSODIUM_EXPORT)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2017-01-21 01:42:30 +08:00
|
|
|
include(Dependencies)
|
2016-08-11 20:49:49 +08:00
|
|
|
|
2018-02-22 21:56:11 +08:00
|
|
|
if(MUST_BUILD_TOXAV)
|
|
|
|
set(NO_TOXAV_ERROR_TYPE SEND_ERROR)
|
|
|
|
else()
|
|
|
|
set(NO_TOXAV_ERROR_TYPE WARNING)
|
|
|
|
endif()
|
|
|
|
|
2017-06-04 20:59:34 +08:00
|
|
|
if(BUILD_TOXAV)
|
2017-02-21 06:33:50 +08:00
|
|
|
if(NOT OPUS_FOUND)
|
2018-02-22 21:56:11 +08:00
|
|
|
message(${NO_TOXAV_ERROR_TYPE} "Option BUILD_TOXAV is enabled but required library OPUS was not found.")
|
2018-02-05 01:32:36 +08:00
|
|
|
set(BUILD_TOXAV OFF)
|
2017-02-21 06:33:50 +08:00
|
|
|
endif()
|
|
|
|
if(NOT VPX_FOUND)
|
2018-02-22 21:56:11 +08:00
|
|
|
message(${NO_TOXAV_ERROR_TYPE} "Option BUILD_TOXAV is enabled but required library VPX was not found.")
|
2018-02-05 01:32:36 +08:00
|
|
|
set(BUILD_TOXAV OFF)
|
2017-02-21 06:33:50 +08:00
|
|
|
endif()
|
2016-09-18 09:18:24 +08:00
|
|
|
endif()
|
2016-08-10 19:28:33 +08:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
2016-08-16 05:07:49 +08:00
|
|
|
# :: Tox Core Library
|
2016-08-10 19:28:33 +08:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-02-23 01:29:42 +08:00
|
|
|
# toxcore_PKGCONFIG_LIBS is what's added to the Libs: line in toxcore.pc. It
|
|
|
|
# needs to contain all the libraries a program using toxcore should link against
|
|
|
|
# if it's statically linked. If it's dynamically linked, there is no need to
|
|
|
|
# explicitly link against all the dependencies, but it doesn't harm much(*)
|
|
|
|
# either.
|
|
|
|
#
|
|
|
|
# (*) It allows client code to use symbols from our dependencies without
|
|
|
|
# explicitly linking against them.
|
|
|
|
set(toxcore_PKGCONFIG_LIBS)
|
|
|
|
# Requires: in pkg-config file.
|
|
|
|
set(toxcore_PKGCONFIG_REQUIRES)
|
|
|
|
|
2016-08-16 05:07:49 +08:00
|
|
|
# LAYER 1: Crypto core
|
|
|
|
# --------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2022-02-07 00:41:31 +08:00
|
|
|
toxcore/ccompat.c
|
2017-01-21 05:16:55 +08:00
|
|
|
toxcore/ccompat.h
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/crypto_core.c
|
2022-01-14 09:19:02 +08:00
|
|
|
toxcore/crypto_core.h)
|
2018-09-25 04:29:25 +08:00
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${LIBSODIUM_LIBRARIES})
|
2018-02-23 01:29:42 +08:00
|
|
|
set(toxcore_PKGCONFIG_REQUIRES ${toxcore_PKGCONFIG_REQUIRES} libsodium)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 2: Basic networking
|
|
|
|
# -------------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-08-16 05:07:49 +08:00
|
|
|
toxcore/logger.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/logger.h
|
2018-07-08 16:43:42 +08:00
|
|
|
toxcore/mono_time.c
|
|
|
|
toxcore/mono_time.h
|
2016-08-16 05:07:49 +08:00
|
|
|
toxcore/network.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/network.h
|
2018-07-09 21:40:36 +08:00
|
|
|
toxcore/state.c
|
|
|
|
toxcore/state.h
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/util.c
|
|
|
|
toxcore/util.h)
|
2016-08-18 17:29:39 +08:00
|
|
|
|
2016-08-16 05:07:49 +08:00
|
|
|
# LAYER 3: Distributed Hash Table
|
|
|
|
# -------------------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/DHT.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/DHT.h
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/LAN_discovery.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/LAN_discovery.h
|
2016-08-16 05:07:49 +08:00
|
|
|
toxcore/ping.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/ping.h
|
|
|
|
toxcore/ping_array.c
|
|
|
|
toxcore/ping_array.h)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 4: Onion routing, TCP connections, crypto connections
|
|
|
|
# -----------------------------------------------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/TCP_client.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/TCP_client.h
|
2022-01-16 06:10:23 +08:00
|
|
|
toxcore/TCP_common.c
|
|
|
|
toxcore/TCP_common.h
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/TCP_connection.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/TCP_connection.h
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/TCP_server.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/TCP_server.h
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/list.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/list.h
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/net_crypto.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/net_crypto.h
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/onion.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/onion.h
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/onion_announce.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/onion_announce.h
|
|
|
|
toxcore/onion_client.c
|
|
|
|
toxcore/onion_client.h)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-16 05:07:49 +08:00
|
|
|
# LAYER 5: Friend requests and connections
|
|
|
|
# ----------------------------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-08-16 05:07:49 +08:00
|
|
|
toxcore/friend_connection.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/friend_connection.h
|
|
|
|
toxcore/friend_requests.c
|
|
|
|
toxcore/friend_requests.h)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 6: Tox messenger
|
|
|
|
# ----------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/Messenger.c
|
|
|
|
toxcore/Messenger.h)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 7: Group chats
|
|
|
|
# --------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/group.c
|
|
|
|
toxcore/group.h)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 8: Public API
|
|
|
|
# -------------------
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-12-16 01:35:54 +08:00
|
|
|
toxcore/tox_api.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/tox.c
|
2022-02-07 00:41:31 +08:00
|
|
|
toxcore/tox.h
|
|
|
|
toxcore/tox_private.h)
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_API_HEADERS ${toxcore_API_HEADERS} ${toxcore_SOURCE_DIR}/toxcore/tox.h^tox)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
2022-02-07 00:41:31 +08:00
|
|
|
# LAYER 9: New async events API
|
|
|
|
# -------------------
|
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
|
|
|
toxcore/events/conference_connected.c
|
|
|
|
toxcore/events/conference_invite.c
|
|
|
|
toxcore/events/conference_message.c
|
|
|
|
toxcore/events/conference_peer_list_changed.c
|
|
|
|
toxcore/events/conference_peer_name.c
|
|
|
|
toxcore/events/conference_title.c
|
|
|
|
toxcore/events/file_chunk_request.c
|
|
|
|
toxcore/events/file_recv.c
|
|
|
|
toxcore/events/file_recv_chunk.c
|
|
|
|
toxcore/events/file_recv_control.c
|
|
|
|
toxcore/events/friend_connection_status.c
|
|
|
|
toxcore/events/friend_lossless_packet.c
|
|
|
|
toxcore/events/friend_lossy_packet.c
|
|
|
|
toxcore/events/friend_message.c
|
|
|
|
toxcore/events/friend_name.c
|
|
|
|
toxcore/events/friend_read_receipt.c
|
|
|
|
toxcore/events/friend_request.c
|
|
|
|
toxcore/events/friend_status.c
|
|
|
|
toxcore/events/friend_status_message.c
|
|
|
|
toxcore/events/friend_typing.c
|
|
|
|
toxcore/events/events_alloc.c
|
|
|
|
toxcore/events/events_alloc.h
|
|
|
|
toxcore/events/self_connection_status.c
|
2022-02-12 11:11:32 +08:00
|
|
|
toxcore/bin_pack.c
|
|
|
|
toxcore/bin_pack.h
|
2022-02-11 04:34:35 +08:00
|
|
|
toxcore/bin_unpack.c
|
|
|
|
toxcore/bin_unpack.h
|
2022-02-07 00:41:31 +08:00
|
|
|
toxcore/tox_events.c
|
2022-02-08 02:58:34 +08:00
|
|
|
toxcore/tox_events.h
|
|
|
|
toxcore/tox_unpack.c
|
|
|
|
toxcore/tox_unpack.h)
|
2022-02-07 00:41:31 +08:00
|
|
|
set(toxcore_API_HEADERS ${toxcore_API_HEADERS} ${toxcore_SOURCE_DIR}/toxcore/tox_events.h^tox)
|
2022-02-07 07:53:41 +08:00
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${MSGPACK_LIBRARIES})
|
|
|
|
set(toxcore_PKGCONFIG_REQUIRES ${toxcore_PKGCONFIG_REQUIRES} msgpack)
|
2022-02-07 00:41:31 +08:00
|
|
|
|
|
|
|
# LAYER 10: Dispatch recorded events to callbacks.
|
|
|
|
# -------------------
|
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
|
|
|
toxcore/tox_dispatch.c
|
|
|
|
toxcore/tox_dispatch.h)
|
|
|
|
set(toxcore_API_HEADERS ${toxcore_API_HEADERS} ${toxcore_SOURCE_DIR}/toxcore/tox_dispatch.h^tox)
|
|
|
|
|
2016-08-16 05:07:49 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Audio/Video Library
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-09-18 09:18:24 +08:00
|
|
|
if(BUILD_TOXAV)
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-09-18 09:18:24 +08:00
|
|
|
toxav/audio.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxav/audio.h
|
2016-09-18 09:18:24 +08:00
|
|
|
toxav/bwcontroller.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxav/bwcontroller.h
|
2016-10-29 04:11:48 +08:00
|
|
|
toxav/groupav.c
|
|
|
|
toxav/groupav.h
|
2016-09-18 09:18:24 +08:00
|
|
|
toxav/msi.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxav/msi.h
|
2016-09-22 22:20:33 +08:00
|
|
|
toxav/ring_buffer.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxav/ring_buffer.h
|
2016-09-18 09:18:24 +08:00
|
|
|
toxav/rtp.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxav/rtp.h
|
2016-09-18 09:18:24 +08:00
|
|
|
toxav/toxav.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxav/toxav.h
|
2016-09-18 09:18:24 +08:00
|
|
|
toxav/toxav_old.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxav/video.c
|
|
|
|
toxav/video.h)
|
2018-09-25 04:29:25 +08:00
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${OPUS_LIBRARIES} ${VPX_LIBRARIES})
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_PKGCONFIG_REQUIRES ${toxcore_PKGCONFIG_REQUIRES} opus vpx)
|
2017-01-16 00:16:16 +08:00
|
|
|
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_API_HEADERS ${toxcore_API_HEADERS} ${toxcore_SOURCE_DIR}/toxav/toxav.h^toxav)
|
2016-09-18 09:18:24 +08:00
|
|
|
endif()
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
2017-12-29 08:29:14 +08:00
|
|
|
# :: Block encryption libraries
|
2016-08-16 05:07:49 +08:00
|
|
|
#
|
|
|
|
################################################################################
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_SOURCES ${toxcore_SOURCES}
|
2016-12-10 19:21:22 +08:00
|
|
|
toxencryptsave/toxencryptsave.c
|
|
|
|
toxencryptsave/toxencryptsave.h)
|
2018-02-15 07:21:57 +08:00
|
|
|
set(toxcore_API_HEADERS ${toxcore_API_HEADERS} ${toxcore_SOURCE_DIR}/toxencryptsave/toxencryptsave.h^tox)
|
2017-01-16 00:16:16 +08:00
|
|
|
|
2018-02-21 09:03:43 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: System dependencies
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# These need to come after other dependencies, since e.g. libvpx may depend on
|
|
|
|
# pthread, but doesn't list it in VPX_LIBRARIES. We're adding it here, after
|
|
|
|
# any potential libvpx linking.
|
|
|
|
message("CMAKE_THREAD_LIBS_INIT: ${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
if(CMAKE_THREAD_LIBS_INIT)
|
2018-09-25 04:29:25 +08:00
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${CMAKE_THREAD_LIBS_INIT})
|
2018-02-21 09:03:43 +08:00
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
endif()
|
|
|
|
|
2018-09-25 04:29:25 +08:00
|
|
|
|
2018-07-19 22:56:34 +08:00
|
|
|
if(NSL_LIBRARIES)
|
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${NSL_LIBRARIES})
|
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} -lnsl)
|
|
|
|
endif()
|
|
|
|
|
2018-02-21 09:03:43 +08:00
|
|
|
if(RT_LIBRARIES)
|
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${RT_LIBRARIES})
|
2018-02-23 01:29:42 +08:00
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} -lrt)
|
2018-02-21 09:03:43 +08:00
|
|
|
endif()
|
|
|
|
|
2018-07-19 22:56:34 +08:00
|
|
|
if(SOCKET_LIBRARIES)
|
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${SOCKET_LIBRARIES})
|
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} -lsocket)
|
|
|
|
endif()
|
|
|
|
|
2018-02-21 09:03:43 +08:00
|
|
|
if(WIN32)
|
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ws2_32 iphlpapi)
|
2018-02-23 01:29:42 +08:00
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} -lws2_32 -liphlpapi)
|
2018-02-21 09:03:43 +08:00
|
|
|
endif()
|
|
|
|
|
2017-01-16 00:16:16 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: All layers together in one library for ease of use
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Create combined library from all the sources.
|
|
|
|
add_module(toxcore ${toxcore_SOURCES})
|
|
|
|
|
|
|
|
# Link it to all dependencies.
|
|
|
|
target_link_modules(toxcore ${toxcore_LINK_MODULES})
|
|
|
|
|
|
|
|
# Make version script (on systems that support it) to limit symbol visibility.
|
|
|
|
make_version_script(toxcore ${toxcore_API_HEADERS})
|
|
|
|
|
2018-01-15 19:23:33 +08:00
|
|
|
# Generate pkg-config file, install library to "${CMAKE_INSTALL_LIBDIR}" and install headers to
|
|
|
|
# "${CMAKE_INSTALL_INCLUDEDIR}/tox".
|
|
|
|
install_module(toxcore DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/tox)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
2018-02-04 00:13:22 +08:00
|
|
|
# :: Unit tests: no networking, just pure function calls.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-02-11 08:09:07 +08:00
|
|
|
include(CompileGTest)
|
2018-02-04 00:13:22 +08:00
|
|
|
|
|
|
|
# The actual unit tests follow.
|
|
|
|
#
|
2018-07-04 02:14:36 +08:00
|
|
|
unit_test(toxav ring_buffer)
|
2018-02-02 23:37:19 +08:00
|
|
|
unit_test(toxav rtp)
|
2021-12-01 02:15:27 +08:00
|
|
|
unit_test(toxcore DHT)
|
2018-02-04 00:13:22 +08:00
|
|
|
unit_test(toxcore crypto_core)
|
2018-07-08 16:43:42 +08:00
|
|
|
unit_test(toxcore mono_time)
|
2018-08-26 17:42:08 +08:00
|
|
|
unit_test(toxcore ping_array)
|
2018-02-03 23:44:43 +08:00
|
|
|
unit_test(toxcore util)
|
2018-02-04 00:13:22 +08:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Automated regression tests: create a tox network and run integration tests
|
2016-08-10 19:28:33 +08:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2020-04-27 10:57:21 +08:00
|
|
|
set(misc_tools_SOURCES
|
2018-07-17 06:46:02 +08:00
|
|
|
testing/misc_tools.c
|
|
|
|
testing/misc_tools.h)
|
2020-04-27 10:57:21 +08:00
|
|
|
add_library(misc_tools ${misc_tools_SOURCES})
|
2018-07-17 06:46:02 +08:00
|
|
|
target_link_modules(misc_tools toxcore)
|
|
|
|
|
2016-10-05 00:48:24 +08:00
|
|
|
set(TEST_TIMEOUT_SECONDS "" CACHE STRING "Limit runtime of each test to the number of seconds specified")
|
|
|
|
|
2018-02-23 02:29:20 +08:00
|
|
|
if(ANDROID_CPU_FEATURES)
|
|
|
|
# We need to compile cpufeatures.c as many times as there are executables,
|
|
|
|
# because libvpx doesn't include it although it depends on it. We can't get
|
|
|
|
# the link ordering right in cmake, so we need to compile the cpufeatures
|
|
|
|
# library into every binary explicitly.
|
|
|
|
#
|
|
|
|
# The alternative is to #include the library in every main file, but I
|
|
|
|
# (@iphydf) felt that this solution was cleaner.
|
|
|
|
add_definitions(-DANDROID_CPU_FEATURES="${ANDROID_CPU_FEATURES}")
|
|
|
|
set(CPUFEATURES other/cpufeatures.c)
|
|
|
|
endif()
|
|
|
|
|
2018-10-07 02:03:52 +08:00
|
|
|
option(AUTOTEST "Enable autotests (mainly for CI)" OFF)
|
|
|
|
|
2022-01-26 03:25:36 +08:00
|
|
|
if(AUTOTEST)
|
|
|
|
add_library(auto_test_support
|
|
|
|
auto_tests/auto_test_support.c
|
|
|
|
auto_tests/auto_test_support.h)
|
|
|
|
target_link_modules(auto_test_support toxcore misc_tools)
|
|
|
|
endif()
|
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
function(auto_test target)
|
2018-10-07 02:03:52 +08:00
|
|
|
if(AUTOTEST AND NOT (MSVC AND ARGV1 STREQUAL "MSVC_DONT_BUILD"))
|
2018-02-23 02:29:20 +08:00
|
|
|
add_executable(auto_${target}_test ${CPUFEATURES}
|
|
|
|
auto_tests/${target}_test.c)
|
2022-01-26 03:25:36 +08:00
|
|
|
target_link_modules(auto_${target}_test toxcore misc_tools auto_test_support)
|
2017-06-05 04:58:28 +08:00
|
|
|
if(NOT ARGV1 STREQUAL "DONT_RUN")
|
2017-02-16 18:01:28 +08:00
|
|
|
add_test(NAME ${target} COMMAND ${CROSSCOMPILING_EMULATOR} auto_${target}_test)
|
2017-06-05 04:58:28 +08:00
|
|
|
set_tests_properties(${target} PROPERTIES TIMEOUT "${TEST_TIMEOUT_SECONDS}")
|
2018-03-17 12:37:21 +08:00
|
|
|
set_property(TEST ${target} PROPERTY ENVIRONMENT "LLVM_PROFILE_FILE=${target}.profraw")
|
2017-06-05 04:58:28 +08:00
|
|
|
endif()
|
2016-08-10 19:28:33 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(TCP)
|
2016-10-11 19:52:06 +08:00
|
|
|
auto_test(conference)
|
2018-06-24 08:41:09 +08:00
|
|
|
auto_test(conference_double_invite)
|
2020-03-01 08:00:00 +08:00
|
|
|
auto_test(conference_invite_merge)
|
2018-07-06 18:39:57 +08:00
|
|
|
auto_test(conference_peer_nick)
|
2018-07-07 18:18:55 +08:00
|
|
|
auto_test(conference_simple)
|
2018-07-06 18:39:57 +08:00
|
|
|
auto_test(conference_two)
|
2022-01-09 02:27:47 +08:00
|
|
|
auto_test(crypto)
|
2022-02-08 06:38:26 +08:00
|
|
|
#auto_test(dht) # Doesn't work with UNITY_BUILD.
|
2022-02-10 23:20:37 +08:00
|
|
|
auto_test(dht_getnodes_api)
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(encryptsave)
|
2018-02-06 04:07:26 +08:00
|
|
|
auto_test(file_transfer)
|
2018-07-16 11:55:45 +08:00
|
|
|
auto_test(file_saving)
|
2018-06-25 20:37:46 +08:00
|
|
|
auto_test(friend_connection)
|
2018-02-18 08:57:45 +08:00
|
|
|
auto_test(friend_request)
|
2018-06-23 19:40:20 +08:00
|
|
|
auto_test(invalid_tcp_proxy)
|
2018-07-26 07:19:05 +08:00
|
|
|
auto_test(invalid_udp_proxy)
|
2018-02-06 00:11:49 +08:00
|
|
|
auto_test(lan_discovery)
|
2018-02-18 08:57:45 +08:00
|
|
|
auto_test(lossless_packet)
|
|
|
|
auto_test(lossy_packet)
|
2022-01-09 02:27:47 +08:00
|
|
|
auto_test(messenger)
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(network)
|
|
|
|
auto_test(onion)
|
2018-06-25 20:37:46 +08:00
|
|
|
auto_test(overflow_recvq)
|
|
|
|
auto_test(overflow_sendq)
|
2018-08-15 00:37:32 +08:00
|
|
|
auto_test(reconnect)
|
2016-12-10 22:12:32 +08:00
|
|
|
auto_test(save_friend)
|
2018-02-18 08:57:45 +08:00
|
|
|
auto_test(save_load)
|
|
|
|
auto_test(send_message)
|
|
|
|
auto_test(set_name)
|
|
|
|
auto_test(set_status_message)
|
2022-02-07 00:41:31 +08:00
|
|
|
auto_test(tox_dispatch)
|
|
|
|
auto_test(tox_events)
|
2016-10-11 19:52:06 +08:00
|
|
|
auto_test(tox_many)
|
|
|
|
auto_test(tox_many_tcp)
|
|
|
|
auto_test(tox_one)
|
2017-02-27 01:56:55 +08:00
|
|
|
auto_test(tox_strncasecmp)
|
2018-02-18 08:57:45 +08:00
|
|
|
auto_test(typing)
|
2016-12-12 00:45:03 +08:00
|
|
|
auto_test(version)
|
2018-08-05 04:56:01 +08:00
|
|
|
auto_test(save_compatibility)
|
2016-12-12 00:45:03 +08:00
|
|
|
|
2020-04-29 20:09:34 +08:00
|
|
|
if(NON_HERMETIC_TESTS)
|
|
|
|
auto_test(bootstrap)
|
|
|
|
auto_test(tcp_relay)
|
|
|
|
endif()
|
|
|
|
|
2016-09-18 09:18:24 +08:00
|
|
|
if(BUILD_TOXAV)
|
2022-01-09 02:27:47 +08:00
|
|
|
auto_test(conference_av MSVC_DONT_BUILD)
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(toxav_basic)
|
|
|
|
auto_test(toxav_many)
|
2016-09-18 09:18:24 +08:00
|
|
|
endif()
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-11 02:39:59 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
2016-08-16 05:07:49 +08:00
|
|
|
# :: Bootstrap daemon
|
2016-08-11 02:39:59 +08:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2017-01-17 06:43:08 +08:00
|
|
|
option(DHT_BOOTSTRAP "Enable building of DHT_bootstrap" ON)
|
|
|
|
if(DHT_BOOTSTRAP)
|
2018-02-23 02:29:20 +08:00
|
|
|
add_executable(DHT_bootstrap ${CPUFEATURES}
|
2017-01-17 06:43:08 +08:00
|
|
|
other/DHT_bootstrap.c
|
|
|
|
other/bootstrap_node_packets.c)
|
2018-07-17 06:46:02 +08:00
|
|
|
target_link_modules(DHT_bootstrap toxcore misc_tools)
|
2018-08-17 04:25:05 +08:00
|
|
|
install(TARGETS DHT_bootstrap RUNTIME DESTINATION bin)
|
2017-01-17 06:43:08 +08:00
|
|
|
endif()
|
2016-08-18 00:36:05 +08:00
|
|
|
|
2016-10-03 13:52:43 +08:00
|
|
|
option(BOOTSTRAP_DAEMON "Enable building of tox-bootstrapd" ON)
|
2018-02-05 01:32:36 +08:00
|
|
|
if(BOOTSTRAP_DAEMON AND WIN32)
|
|
|
|
message(WARNING "Building tox-bootstrapd for Windows is not supported")
|
|
|
|
set(BOOTSTRAP_DAEMON OFF)
|
|
|
|
endif()
|
2016-10-03 13:52:43 +08:00
|
|
|
if(BOOTSTRAP_DAEMON)
|
2018-04-06 23:51:20 +08:00
|
|
|
if(NOT LIBCONFIG_FOUND)
|
|
|
|
message(WARNING "Option BOOTSTRAP_DAEMON is enabled but required library LIBCONFIG was not found.")
|
|
|
|
set(BOOTSTRAP_DAEMON OFF)
|
|
|
|
else()
|
2018-02-23 02:29:20 +08:00
|
|
|
add_executable(tox-bootstrapd ${CPUFEATURES}
|
2016-10-03 13:52:43 +08:00
|
|
|
other/bootstrap_daemon/src/command_line_arguments.c
|
|
|
|
other/bootstrap_daemon/src/command_line_arguments.h
|
|
|
|
other/bootstrap_daemon/src/config.c
|
|
|
|
other/bootstrap_daemon/src/config.h
|
2017-03-02 15:38:57 +08:00
|
|
|
other/bootstrap_daemon/src/config_defaults.h
|
|
|
|
other/bootstrap_daemon/src/global.h
|
2016-10-03 13:52:43 +08:00
|
|
|
other/bootstrap_daemon/src/log.c
|
|
|
|
other/bootstrap_daemon/src/log.h
|
2017-03-02 15:38:57 +08:00
|
|
|
other/bootstrap_daemon/src/log_backend_stdout.c
|
|
|
|
other/bootstrap_daemon/src/log_backend_stdout.h
|
|
|
|
other/bootstrap_daemon/src/log_backend_syslog.c
|
|
|
|
other/bootstrap_daemon/src/log_backend_syslog.h
|
2016-10-03 13:52:43 +08:00
|
|
|
other/bootstrap_daemon/src/tox-bootstrapd.c
|
|
|
|
other/bootstrap_node_packets.c
|
|
|
|
other/bootstrap_node_packets.h)
|
2018-02-15 07:21:57 +08:00
|
|
|
target_link_modules(tox-bootstrapd toxcore ${LIBCONFIG_LIBRARIES})
|
2017-03-08 04:49:43 +08:00
|
|
|
install(TARGETS tox-bootstrapd RUNTIME DESTINATION bin)
|
2022-02-09 08:16:32 +08:00
|
|
|
install(FILES other/bootstrap_daemon/bash-completion/completions/tox-bootstrapd DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/bash-completion/completions")
|
2016-10-03 13:52:43 +08:00
|
|
|
endif()
|
2016-08-11 20:49:49 +08:00
|
|
|
endif()
|
2016-08-11 02:39:59 +08:00
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
2016-08-16 05:07:49 +08:00
|
|
|
# :: Test programs
|
2016-08-10 19:28:33 +08:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-12-08 19:32:32 +08:00
|
|
|
option(BUILD_MISC_TESTS "Build additional tests" OFF)
|
|
|
|
if (BUILD_MISC_TESTS)
|
|
|
|
add_executable(DHT_test ${CPUFEATURES}
|
|
|
|
testing/DHT_test.c)
|
|
|
|
target_link_modules(DHT_test toxcore misc_tools)
|
|
|
|
|
|
|
|
add_executable(Messenger_test ${CPUFEATURES}
|
|
|
|
testing/Messenger_test.c)
|
|
|
|
target_link_modules(Messenger_test toxcore misc_tools)
|
|
|
|
|
|
|
|
add_executable(random_testing ${CPUFEATURES}
|
|
|
|
testing/random_testing.cc)
|
|
|
|
target_link_modules(random_testing toxcore misc_tools)
|
|
|
|
|
|
|
|
add_executable(save-generator
|
|
|
|
other/fun/save-generator.c)
|
|
|
|
target_link_modules(save-generator toxcore misc_tools)
|
2020-05-31 07:37:22 +08:00
|
|
|
|
2022-01-09 02:22:02 +08:00
|
|
|
if(NOT MSVC)
|
|
|
|
add_executable(cracker
|
|
|
|
other/fun/cracker.c)
|
|
|
|
target_link_modules(cracker ${LIBSODIUM_LIBRARIES})
|
|
|
|
find_package(OpenMP)
|
|
|
|
if(OpenMP_C_FOUND)
|
|
|
|
target_link_libraries(cracker OpenMP::OpenMP_C)
|
|
|
|
endif()
|
2020-05-31 07:37:22 +08:00
|
|
|
endif()
|
2021-12-05 20:07:27 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Enabling this breaks all other tests and no network connections will be possible
|
|
|
|
option(BUILD_FUZZ_TESTS "Build fuzzing harnesses" OFF)
|
|
|
|
if (BUILD_FUZZ_TESTS)
|
2021-12-05 20:11:20 +08:00
|
|
|
# For coverage tests
|
|
|
|
target_compile_definitions(toxcore_static PUBLIC "FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION")
|
2021-12-05 20:07:27 +08:00
|
|
|
|
2021-12-05 20:11:20 +08:00
|
|
|
# Override network and random functions
|
|
|
|
add_library(fuzz_adapter testing/fuzzing/fuzz_adapter.c)
|
2020-05-31 07:37:22 +08:00
|
|
|
|
2021-12-05 20:11:20 +08:00
|
|
|
# Fuzzes the toxsave API
|
|
|
|
add_executable(toxsave_fuzzer testing/fuzzing/toxsave_harness.cc)
|
|
|
|
target_link_libraries(toxsave_fuzzer toxcore_static fuzz_adapter -fsanitize=fuzzer)
|
2021-12-05 20:07:27 +08:00
|
|
|
|
2021-12-05 20:11:20 +08:00
|
|
|
# Fuzzes the bootstrap process
|
|
|
|
add_executable(bootstrap_fuzzer testing/fuzzing/bootstrap_harness.cc)
|
|
|
|
target_link_libraries(bootstrap_fuzzer toxcore_static fuzz_adapter -fsanitize=fuzzer)
|
2018-12-08 19:32:32 +08:00
|
|
|
endif()
|