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
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8.6)
|
2017-01-21 01:42:30 +08:00
|
|
|
cmake_policy(VERSION 2.8.6)
|
2016-08-10 19:28:33 +08:00
|
|
|
project(toxcore)
|
|
|
|
|
2017-01-16 04:22:35 +08:00
|
|
|
set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: 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")
|
|
|
|
set(PROJECT_VERSION_PATCH "0")
|
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
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2017-06-04 08:36:18 +08:00
|
|
|
include(AddCompilerFlag)
|
2016-09-21 17:51:58 +08:00
|
|
|
include(ApiDsl)
|
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-02-05 01:32:36 +08:00
|
|
|
if(NOT MSVC)
|
2017-01-21 01:42:30 +08:00
|
|
|
# Set standard version for compiler.
|
|
|
|
add_cflag("-std=c99")
|
|
|
|
add_cxxflag("-std=c++11")
|
|
|
|
|
|
|
|
# Warn on non-ISO C.
|
|
|
|
add_cflag("-pedantic")
|
|
|
|
|
2018-01-22 17:37:31 +08:00
|
|
|
option(ERROR_ON_WARNING "Make compilation error on a warning" OFF)
|
|
|
|
if(ERROR_ON_WARNING)
|
|
|
|
add_flag("-Werror")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
option(DEBUG "Enable assertions and other debugging facilities" OFF)
|
|
|
|
if(DEBUG)
|
|
|
|
set(MIN_LOGGER_LEVEL DEBUG)
|
|
|
|
add_cflag("-g3")
|
2017-03-04 16:39:31 +08:00
|
|
|
if(MINGW)
|
|
|
|
# Allows wine to display source code file names and line numbers on crash in its backtrace
|
|
|
|
add_flag("-gdwarf-2")
|
|
|
|
endif()
|
2018-01-22 17:37:31 +08:00
|
|
|
endif()
|
|
|
|
|
2017-01-21 01:42:30 +08:00
|
|
|
option(WARNINGS "Enable additional compiler warnings" ON)
|
|
|
|
if(WARNINGS)
|
|
|
|
# Add all warning flags we can.
|
|
|
|
add_flag("-Wall")
|
|
|
|
add_flag("-Wextra")
|
|
|
|
add_flag("-Weverything")
|
|
|
|
|
|
|
|
# Disable specific warning flags for both C and C++.
|
|
|
|
add_flag("-Wno-cast-align")
|
|
|
|
add_flag("-Wno-conversion")
|
|
|
|
add_flag("-Wno-covered-switch-default")
|
2017-02-24 13:19:42 +08:00
|
|
|
# Due to clang's tolower() macro being recursive https://github.com/TokTok/c-toxcore/pull/481
|
|
|
|
add_flag("-Wno-disabled-macro-expansion")
|
2017-01-21 01:42:30 +08:00
|
|
|
add_flag("-Wno-documentation-deprecated-sync")
|
|
|
|
add_flag("-Wno-format-nonliteral")
|
|
|
|
add_flag("-Wno-missing-field-initializers")
|
|
|
|
add_flag("-Wno-missing-prototypes")
|
2018-01-22 17:37:31 +08:00
|
|
|
add_flag("-Wno-packed")
|
2017-01-21 01:42:30 +08:00
|
|
|
add_flag("-Wno-padded")
|
|
|
|
add_flag("-Wno-parentheses")
|
2018-01-22 17:37:31 +08:00
|
|
|
add_flag("-Wno-reserved-id-macro")
|
2017-01-21 01:42:30 +08:00
|
|
|
add_flag("-Wno-return-type")
|
|
|
|
add_flag("-Wno-sign-compare")
|
|
|
|
add_flag("-Wno-sign-conversion")
|
2017-06-05 20:59:51 +08:00
|
|
|
# Our use of mutexes results in a false positive, see 1bbe446
|
|
|
|
add_flag("-Wno-thread-safety-analysis")
|
2017-01-21 01:42:30 +08:00
|
|
|
add_flag("-Wno-type-limits")
|
|
|
|
add_flag("-Wno-undef")
|
|
|
|
add_flag("-Wno-unreachable-code")
|
|
|
|
add_flag("-Wno-unused-macros")
|
|
|
|
add_flag("-Wno-unused-parameter")
|
|
|
|
add_flag("-Wno-vla")
|
|
|
|
|
|
|
|
# Disable specific warning flags for C.
|
|
|
|
add_cflag("-Wno-assign-enum")
|
|
|
|
add_cflag("-Wno-bad-function-cast")
|
|
|
|
add_cflag("-Wno-double-promotion")
|
|
|
|
add_cflag("-Wno-gnu-zero-variadic-macro-arguments")
|
|
|
|
add_cflag("-Wno-packed")
|
|
|
|
add_cflag("-Wno-shadow")
|
|
|
|
add_cflag("-Wno-shorten-64-to-32")
|
|
|
|
add_cflag("-Wno-unreachable-code-return")
|
|
|
|
add_cflag("-Wno-unused-but-set-variable")
|
|
|
|
add_cflag("-Wno-used-but-marked-unused")
|
|
|
|
|
|
|
|
# Disable specific warning flags for C++.
|
2018-01-22 17:37:31 +08:00
|
|
|
add_cxxflag("-Wno-c++98-compat")
|
|
|
|
add_cxxflag("-Wno-c++98-compat-pedantic")
|
2017-01-21 01:42:30 +08:00
|
|
|
add_cxxflag("-Wno-c99-extensions")
|
2018-01-22 17:37:31 +08:00
|
|
|
add_cxxflag("-Wno-double-promotion")
|
2017-01-21 01:42:30 +08:00
|
|
|
add_cxxflag("-Wno-narrowing")
|
|
|
|
add_cxxflag("-Wno-old-style-cast")
|
2018-01-22 17:37:31 +08:00
|
|
|
add_cxxflag("-Wno-shadow")
|
|
|
|
add_cxxflag("-Wno-used-but-marked-unused")
|
2017-01-21 01:42:30 +08:00
|
|
|
add_cxxflag("-Wno-variadic-macros")
|
|
|
|
add_cxxflag("-Wno-vla-extension")
|
2016-11-28 04:24:18 +08:00
|
|
|
|
2018-01-22 17:37:31 +08:00
|
|
|
# Downgrade to warning so we still see it.
|
|
|
|
add_flag("-Wno-error=unused-variable")
|
2017-01-21 01:42:30 +08:00
|
|
|
endif()
|
2016-08-18 00:36:05 +08:00
|
|
|
endif()
|
|
|
|
|
2016-10-01 02:13:29 +08:00
|
|
|
option(TRACE "Enable TRACE level logging (expensive, for network debugging)" OFF)
|
|
|
|
if(TRACE)
|
|
|
|
set(MIN_LOGGER_LEVEL TRACE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MIN_LOGGER_LEVEL)
|
|
|
|
add_definitions(-DMIN_LOGGER_LEVEL=LOG_${MIN_LOGGER_LEVEL})
|
|
|
|
endif()
|
|
|
|
|
2016-08-26 22:43:29 +08:00
|
|
|
option(ASAN "Enable address-sanitizer to detect invalid memory accesses" OFF)
|
|
|
|
if(ASAN)
|
|
|
|
set(SAFE_CMAKE_REQUIRED_LIBRARIES "${CMAKE_REQUIRED_LIBRARIES}")
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES "-fsanitize=address")
|
2016-11-02 23:13:06 +08:00
|
|
|
add_cflag("-fsanitize=address")
|
2016-08-26 22:43:29 +08:00
|
|
|
set(CMAKE_REQUIRED_LIBRARIES "${SAFE_CMAKE_REQUIRED_LIBRARIES}")
|
2017-06-04 08:36:18 +08:00
|
|
|
else()
|
|
|
|
# Forbid undefined symbols in shared libraries. This is incompatible with
|
|
|
|
# asan, so it's in the else branch here.
|
|
|
|
add_dllflag("-Wl,-z,defs")
|
2016-08-26 22:43: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()
|
|
|
|
|
2017-02-21 06:33:50 +08:00
|
|
|
option(BUILD_TOXAV "Whether to build the tox AV library" ON)
|
|
|
|
|
2017-01-21 01:42:30 +08:00
|
|
|
include(Dependencies)
|
2016-08-11 20:49:49 +08:00
|
|
|
|
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-05 01:32:36 +08:00
|
|
|
message(WARNING "Option BUILD_TOXAV is enabled but required library OPUS was not found.")
|
|
|
|
set(BUILD_TOXAV OFF)
|
2017-02-21 06:33:50 +08:00
|
|
|
endif()
|
|
|
|
if(NOT VPX_FOUND)
|
2018-02-05 01:32:36 +08:00
|
|
|
message(WARNING "Option BUILD_TOXAV is enabled but required library VPX was not found.")
|
|
|
|
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
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-08-16 05:07:49 +08:00
|
|
|
# LAYER 1: Crypto core
|
|
|
|
# --------------------
|
2017-06-04 20:07:43 +08:00
|
|
|
apidsl(toxcore/crypto_core.api.h)
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxcrypto
|
2017-01-21 05:16:55 +08:00
|
|
|
toxcore/ccompat.h
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/crypto_core.c
|
2016-12-20 14:39:14 +08:00
|
|
|
toxcore/crypto_core.h
|
|
|
|
toxcore/crypto_core_mem.c)
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
check_function_exists(explicit_bzero HAVE_EXPLICIT_BZERO)
|
|
|
|
check_function_exists(memset_s HAVE_MEMSET_S)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxcrypto ${LIBSODIUM_LIBRARIES})
|
2017-01-16 00:16:16 +08:00
|
|
|
set(toxcrypto_PKGCONFIG_REQUIRES ${toxcrypto_PKGCONFIG_REQUIRES} libsodium)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 2: Basic networking
|
|
|
|
# -------------------------
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxnetwork
|
2016-08-16 05:07:49 +08:00
|
|
|
toxcore/logger.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/logger.h
|
2016-08-16 05:07:49 +08:00
|
|
|
toxcore/network.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/network.h
|
|
|
|
toxcore/util.c
|
|
|
|
toxcore/util.h)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxnetwork toxcrypto)
|
2016-08-18 17:29:39 +08:00
|
|
|
|
|
|
|
if(CMAKE_THREAD_LIBS_INIT)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxnetwork ${CMAKE_THREAD_LIBS_INIT})
|
2017-01-16 00:16:16 +08:00
|
|
|
set(toxnetwork_PKGCONFIG_LIBS ${toxnetwork_PKGCONFIG_LIBS} ${CMAKE_THREAD_LIBS_INIT})
|
2016-08-18 17:29:39 +08:00
|
|
|
endif()
|
|
|
|
|
2016-08-18 00:36:05 +08:00
|
|
|
if(RT_LIBRARIES)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxnetwork ${RT_LIBRARIES})
|
2017-01-16 00:16:16 +08:00
|
|
|
set(toxnetwork_PKGCONFIG_LIBS ${toxnetwork_PKGCONFIG_LIBS} "-lrt")
|
2016-08-18 00:36:05 +08:00
|
|
|
endif()
|
2016-08-16 05:07:49 +08:00
|
|
|
|
2016-08-18 17:29:39 +08:00
|
|
|
if(WIN32)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxnetwork ws2_32 iphlpapi)
|
2017-01-16 00:16:16 +08:00
|
|
|
set(toxnetwork_PKGCONFIG_LIBS ${toxnetwork_PKGCONFIG_LIBS} "-lws2_32 -liphlpapi")
|
2016-08-18 17:29:39 +08:00
|
|
|
endif()
|
|
|
|
|
2016-08-16 05:07:49 +08:00
|
|
|
# LAYER 3: Distributed Hash Table
|
|
|
|
# -------------------------------
|
2018-01-15 08:48:35 +08:00
|
|
|
apidsl(toxcore/LAN_discovery.api.h)
|
2018-01-14 09:06:49 +08:00
|
|
|
apidsl(toxcore/ping.api.h)
|
2018-01-14 00:50:32 +08:00
|
|
|
apidsl(toxcore/ping_array.api.h)
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxdht
|
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-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxdht toxnetwork)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 4: Onion routing, TCP connections, crypto connections
|
|
|
|
# -----------------------------------------------------------
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxnetcrypto
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/TCP_client.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/TCP_client.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-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxnetcrypto toxdht)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-16 05:07:49 +08:00
|
|
|
# LAYER 5: Friend requests and connections
|
|
|
|
# ----------------------------------------
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxfriends
|
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-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxfriends toxnetcrypto)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 6: Tox messenger
|
|
|
|
# ----------------------
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxmessenger
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/Messenger.c
|
|
|
|
toxcore/Messenger.h)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxmessenger toxfriends)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 7: Group chats
|
|
|
|
# --------------------
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxgroup
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/group.c
|
|
|
|
toxcore/group.h)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(toxgroup toxmessenger)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
# LAYER 8: Public API
|
|
|
|
# -------------------
|
2017-06-04 20:07:43 +08:00
|
|
|
apidsl(toxcore/tox.api.h)
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxapi
|
2016-12-16 01:35:54 +08:00
|
|
|
toxcore/tox_api.c
|
2016-09-21 17:51:58 +08:00
|
|
|
toxcore/tox.c
|
|
|
|
toxcore/tox.h)
|
2017-01-16 00:16:16 +08:00
|
|
|
target_link_modules(toxapi toxgroup)
|
|
|
|
set(toxapi_API_HEADERS ${toxcore_SOURCE_DIR}/toxcore/tox.h^tox)
|
2016-08-16 05:07:49 +08:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Audio/Video Library
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-09-18 09:18:24 +08:00
|
|
|
if(BUILD_TOXAV)
|
2017-06-04 20:07:43 +08:00
|
|
|
apidsl(toxav/toxav.api.h)
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxav
|
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)
|
2017-01-16 00:16:16 +08:00
|
|
|
target_link_modules(toxav toxgroup ${OPUS_LIBRARIES} ${VPX_LIBRARIES})
|
|
|
|
set(toxav_PKGCONFIG_REQUIRES ${toxav_PKGCONFIG_REQUIRES} opus vpx)
|
|
|
|
|
|
|
|
set(toxav_API_HEADERS ${toxcore_SOURCE_DIR}/toxav/toxav.h^toxav)
|
|
|
|
make_version_script(toxav ${toxav_API_HEADERS})
|
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
|
|
|
|
2017-06-04 20:07:43 +08:00
|
|
|
apidsl(toxencryptsave/toxencryptsave.api.h)
|
2017-01-16 00:16:16 +08:00
|
|
|
add_submodule(toxcore toxencryptsave
|
2016-12-10 19:21:22 +08:00
|
|
|
toxencryptsave/toxencryptsave.c
|
|
|
|
toxencryptsave/toxencryptsave.h)
|
2017-01-16 00:16:16 +08:00
|
|
|
target_link_modules(toxencryptsave toxcrypto)
|
|
|
|
set(toxencryptsave_API_HEADERS ${toxcore_SOURCE_DIR}/toxencryptsave/toxencryptsave.h^tox)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: 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.
|
|
|
|
foreach(sublib ${toxcore_SUBLIBS})
|
|
|
|
set(toxcore_LINK_MODULES ${toxcore_LINK_MODULES} ${${sublib}_LINK_MODULES})
|
|
|
|
endforeach()
|
|
|
|
target_link_modules(toxcore ${toxcore_LINK_MODULES})
|
|
|
|
|
|
|
|
# Concatenate all the pkg-config Libs: lines.
|
|
|
|
foreach(sublib ${toxcore_SUBLIBS})
|
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} ${${sublib}_PKGCONFIG_LIBS})
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Concatenate all the pkg-config Requires: lines.
|
|
|
|
foreach(sublib ${toxcore_SUBLIBS})
|
|
|
|
set(toxcore_PKGCONFIG_REQUIRES ${toxcore_PKGCONFIG_REQUIRES} ${${sublib}_PKGCONFIG_REQUIRES})
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Collect all API headers.
|
|
|
|
foreach(sublib ${toxcore_SUBLIBS})
|
|
|
|
set(toxcore_API_HEADERS ${toxcore_API_HEADERS} ${${sublib}_API_HEADERS})
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# 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
|
|
|
|
2016-11-09 05:56:54 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Tox specification tests
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-01-15 08:31:06 +08:00
|
|
|
# find_program(SPECTEST NAMES
|
|
|
|
# tox-spectest
|
|
|
|
# ../.stack-work/install/x86_64-linux/lts-2.22/7.8.4/bin/tox-spectest)
|
|
|
|
#
|
|
|
|
# if(NOT SPECTEST)
|
|
|
|
# find_program(STACK NAMES stack)
|
|
|
|
# if(STACK)
|
|
|
|
# set(SPECTEST
|
|
|
|
# ${STACK} --stack-yaml ${toxcore_SOURCE_DIR}/../stack.yaml exec --
|
|
|
|
# tox-spectest)
|
|
|
|
# endif()
|
|
|
|
# endif()
|
|
|
|
#
|
|
|
|
# if(MSGPACK_FOUND)
|
2018-01-22 17:37:31 +08:00
|
|
|
# add_executable(toxcore-sut
|
2018-01-15 08:31:06 +08:00
|
|
|
# testing/hstox/binary_decode.c
|
|
|
|
# testing/hstox/binary_encode.c
|
|
|
|
# testing/hstox/driver.c
|
|
|
|
# testing/hstox/methods.c
|
|
|
|
# testing/hstox/packet_kinds.c
|
|
|
|
# testing/hstox/test_main.c
|
|
|
|
# testing/hstox/util.c)
|
|
|
|
# target_link_modules(toxcore-sut
|
|
|
|
# toxcore
|
|
|
|
# toxdht
|
|
|
|
# toxnetcrypto
|
|
|
|
# ${MSGPACK_LIBRARIES})
|
|
|
|
# if(SPECTEST)
|
|
|
|
# add_test(NAME spectest COMMAND ${SPECTEST} $<TARGET_FILE:toxcore-sut>)
|
|
|
|
# endif()
|
|
|
|
# endif()
|
2016-11-09 05:56:54 +08:00
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
2018-02-04 00:13:22 +08:00
|
|
|
# :: Unit tests: no networking, just pure function calls.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Compile the GTest library.
|
|
|
|
#
|
|
|
|
if(EXISTS "/usr/src/gtest/src/gtest-all.cc")
|
|
|
|
add_library(gtest
|
|
|
|
/usr/src/gtest/src/gtest-all.cc
|
|
|
|
/usr/src/gtest/src/gtest_main.cc)
|
|
|
|
target_include_directories(gtest PRIVATE /usr/src/gtest)
|
|
|
|
check_cxx_compiler_flag("-w" HAVE_CXX_W QUIET)
|
|
|
|
check_cxx_compiler_flag("-Wno-global-constructors" HAVE_CXX_W_NO_GLOBAL_CONSTRUCTORS QUIET)
|
|
|
|
check_cxx_compiler_flag("-Wno-zero-as-null-pointer-constant" HAVE_CXX_W_NO_ZERO_AS_NULL_POINTER_CONSTANT QUIET)
|
|
|
|
if(HAVE_CXX_W)
|
|
|
|
set_target_properties(gtest PROPERTIES COMPILE_FLAGS "-w")
|
|
|
|
endif()
|
|
|
|
set(HAVE_GTEST TRUE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
function(unit_test subdir target)
|
|
|
|
if(HAVE_GTEST)
|
|
|
|
add_executable(unit_${target}_test ${subdir}/${target}_test.cpp)
|
|
|
|
target_link_modules(unit_${target}_test ${toxcore_SUBLIBS} gtest)
|
|
|
|
set(gtest_CFLAGS "")
|
|
|
|
if(HAVE_CXX_W_NO_GLOBAL_CONSTRUCTORS)
|
|
|
|
set(gtest_CFLAGS "${gtest_CFLAGS} -Wno-global-constructors")
|
|
|
|
endif()
|
|
|
|
if(HAVE_CXX_W_NO_ZERO_AS_NULL_POINTER_CONSTANT)
|
|
|
|
set(gtest_CFLAGS "${gtest_CFLAGS} -Wno-zero-as-null-pointer-constant")
|
|
|
|
endif()
|
|
|
|
set_target_properties(unit_${target}_test PROPERTIES COMPILE_FLAGS "${gtest_CFLAGS}")
|
|
|
|
add_test(NAME ${target} COMMAND ${CROSSCOMPILING_EMULATOR} unit_${target}_test)
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# The actual unit tests follow.
|
|
|
|
#
|
2018-02-02 23:37:19 +08:00
|
|
|
unit_test(toxav rtp)
|
2018-02-04 00:13:22 +08:00
|
|
|
unit_test(toxcore crypto_core)
|
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
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
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")
|
|
|
|
|
2016-10-24 23:06:09 +08:00
|
|
|
option(FORMAT_TEST "Require the format_test to be executed; fail cmake if it can't" OFF)
|
|
|
|
|
2016-09-21 17:51:58 +08:00
|
|
|
if(APIDSL AND ASTYLE)
|
|
|
|
add_test(
|
|
|
|
NAME format_test
|
2016-12-28 07:30:17 +08:00
|
|
|
COMMAND ${toxcore_SOURCE_DIR}/other/astyle/format-source
|
|
|
|
"${toxcore_SOURCE_DIR}"
|
2016-09-21 17:51:58 +08:00
|
|
|
"${APIDSL}"
|
|
|
|
"${ASTYLE}")
|
2016-10-05 00:48:24 +08:00
|
|
|
set_tests_properties(format_test PROPERTIES TIMEOUT "${TEST_TIMEOUT_SECONDS}")
|
2016-10-24 23:06:09 +08:00
|
|
|
elseif(FORMAT_TEST)
|
|
|
|
message(FATAL_ERROR "format_test can not be run, because either APIDSL (${APIDSL}) or ASTYLE (${ASTYLE}) could not be found")
|
2016-09-21 17:51:58 +08:00
|
|
|
endif()
|
2016-08-20 02:31:08 +08:00
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
function(auto_test target)
|
2018-02-05 01:32:36 +08:00
|
|
|
if(CHECK_FOUND AND NOT (MSVC AND ARGV1 STREQUAL "MSVC_DONT_BUILD"))
|
2018-01-22 17:37:31 +08:00
|
|
|
add_executable(auto_${target}_test auto_tests/${target}_test.c)
|
2016-09-27 06:39:47 +08:00
|
|
|
target_link_modules(auto_${target}_test
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore
|
2017-01-16 00:16:16 +08:00
|
|
|
toxcrypto
|
|
|
|
toxmessenger
|
|
|
|
toxnetcrypto
|
2016-08-11 20:49:49 +08:00
|
|
|
${CHECK_LIBRARIES})
|
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}")
|
|
|
|
endif()
|
2016-08-10 19:28:33 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2018-01-29 05:30:39 +08:00
|
|
|
if(BUILD_TOXAV AND CHECK_FOUND)
|
2018-01-30 06:14:21 +08:00
|
|
|
add_definitions(-D__STDC_LIMIT_MACROS=1)
|
2018-01-22 17:37:31 +08:00
|
|
|
add_executable(auto_monolith_test
|
2018-01-21 05:26:32 +08:00
|
|
|
auto_tests/monolith_test.cpp
|
2018-01-07 07:37:51 +08:00
|
|
|
${ANDROID_CPU_FEATURES})
|
2017-06-04 20:59:34 +08:00
|
|
|
target_link_modules(auto_monolith_test
|
2018-01-29 05:30:39 +08:00
|
|
|
${CHECK_LIBRARIES}
|
2017-06-04 20:59:34 +08:00
|
|
|
${LIBSODIUM_LIBRARIES}
|
|
|
|
${OPUS_LIBRARIES}
|
2017-06-10 11:18:43 +08:00
|
|
|
${VPX_LIBRARIES}
|
|
|
|
${toxcore_PKGCONFIG_LIBS})
|
2017-02-16 18:01:28 +08:00
|
|
|
add_test(NAME monolith COMMAND ${CROSSCOMPILING_EMULATOR} auto_monolith_test)
|
2018-01-07 07:37:51 +08:00
|
|
|
|
|
|
|
if(ANDROID_CPU_FEATURES)
|
|
|
|
target_compile_definitions(auto_monolith_test PRIVATE -Dtypeof=__typeof__)
|
|
|
|
endif()
|
2017-06-04 20:59:34 +08:00
|
|
|
endif()
|
|
|
|
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(TCP)
|
2018-02-06 00:11:49 +08:00
|
|
|
auto_test(bootstrap)
|
2016-10-11 19:52:06 +08:00
|
|
|
auto_test(conference)
|
2017-06-05 04:58:28 +08:00
|
|
|
auto_test(crypto MSVC_DONT_BUILD)
|
|
|
|
auto_test(dht MSVC_DONT_BUILD)
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(encryptsave)
|
2018-02-06 00:11:49 +08:00
|
|
|
auto_test(lan_discovery)
|
2017-06-05 04:58:28 +08:00
|
|
|
auto_test(messenger MSVC_DONT_BUILD)
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(network)
|
|
|
|
auto_test(onion)
|
2016-12-19 05:30:05 +08:00
|
|
|
auto_test(resource_leak)
|
2016-12-10 22:12:32 +08:00
|
|
|
auto_test(save_friend)
|
2018-01-20 08:27:13 +08:00
|
|
|
auto_test(simple_conference)
|
2016-09-27 06:39:47 +08:00
|
|
|
auto_test(skeleton)
|
|
|
|
auto_test(tox)
|
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)
|
2016-12-12 00:45:03 +08:00
|
|
|
auto_test(version)
|
2017-03-09 22:15:07 +08:00
|
|
|
# TODO(iphydf): These tests are broken. The code needs to be fixed, as the
|
|
|
|
# tests themselves are correct.
|
2017-06-05 04:58:28 +08:00
|
|
|
auto_test(selfname_change_conference DONT_RUN)
|
|
|
|
auto_test(self_conference_title_change DONT_RUN)
|
2016-12-12 00:45:03 +08:00
|
|
|
|
2016-09-18 09:18:24 +08:00
|
|
|
if(BUILD_TOXAV)
|
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-01-22 17:37:31 +08:00
|
|
|
add_executable(DHT_bootstrap
|
2017-01-17 06:43:08 +08:00
|
|
|
other/DHT_bootstrap.c
|
|
|
|
other/bootstrap_node_packets.c)
|
|
|
|
target_link_modules(DHT_bootstrap toxnetcrypto)
|
|
|
|
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)
|
|
|
|
if(LIBCONFIG_FOUND)
|
2018-01-22 17:37:31 +08:00
|
|
|
add_executable(tox-bootstrapd
|
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)
|
2017-01-16 00:16:16 +08:00
|
|
|
target_link_modules(tox-bootstrapd toxfriends ${LIBCONFIG_LIBRARIES})
|
2017-03-08 04:49:43 +08:00
|
|
|
install(TARGETS tox-bootstrapd RUNTIME DESTINATION bin)
|
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
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-11-23 21:54:41 +08:00
|
|
|
option(BUILD_AV_TEST "Build toxav test" ON)
|
|
|
|
if(NOT WIN32
|
2017-01-16 00:16:16 +08:00
|
|
|
AND BUILD_AV_TEST AND BUILD_TOXAV
|
|
|
|
AND SNDFILE_FOUND AND PORTAUDIO_FOUND AND OPENCV_FOUND)
|
2018-01-22 17:37:31 +08:00
|
|
|
add_executable(av_test testing/av_test.c)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(av_test
|
2017-01-16 00:16:16 +08:00
|
|
|
toxcore
|
2016-08-31 02:48:19 +08:00
|
|
|
${OPENCV_LIBRARIES}
|
|
|
|
${PORTAUDIO_LIBRARIES}
|
|
|
|
${SNDFILE_LIBRARIES})
|
2016-09-22 07:42:14 +08:00
|
|
|
# Due to https://github.com/opencv/opencv/issues/6585, we need to compile
|
|
|
|
# av_test as C++ for newer OpenCV versions.
|
|
|
|
if(NOT OPENCV_VERSION VERSION_LESS 3)
|
|
|
|
set_source_files_properties(testing/av_test.c PROPERTIES LANGUAGE CXX)
|
|
|
|
endif()
|
2016-08-31 02:48:19 +08:00
|
|
|
endif()
|
|
|
|
|
2018-01-22 17:37:31 +08:00
|
|
|
add_executable(DHT_test testing/DHT_test.c)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(DHT_test toxdht)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2018-01-22 17:37:31 +08:00
|
|
|
add_executable(Messenger_test testing/Messenger_test.c)
|
2016-09-12 01:49:44 +08:00
|
|
|
target_link_modules(Messenger_test toxmessenger)
|