2016-08-10 19:28:33 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8.6)
|
|
|
|
project(toxcore)
|
|
|
|
include(CTest)
|
|
|
|
|
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.
|
|
|
|
set(PROJECT_VERSION "0.0.0")
|
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Dependencies and configuration.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
set(CMAKE_MACOSX_RPATH ON)
|
|
|
|
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
|
|
|
find_library(UTIL_LIBRARIES util)
|
2016-08-11 20:49:49 +08:00
|
|
|
find_library(RT_LIBRARIES rt)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
pkg_search_module(CHECK check)
|
|
|
|
pkg_search_module(LIBCONFIG libconfig)
|
2016-08-11 02:39:59 +08:00
|
|
|
pkg_search_module(LIBSODIUM REQUIRED libsodium)
|
2016-08-10 19:28:33 +08:00
|
|
|
pkg_search_module(OPUS REQUIRED opus)
|
|
|
|
pkg_search_module(VPX REQUIRED vpx)
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
if(CHECK_FOUND)
|
|
|
|
link_directories(${CHECK_LIBRARY_DIRS})
|
|
|
|
endif()
|
|
|
|
if(LIBCONFIG_FOUND)
|
|
|
|
link_directories(${LIBCONFIG_LIBRARY_DIRS})
|
|
|
|
endif()
|
2016-08-11 02:39:59 +08:00
|
|
|
link_directories(${LIBSODIUM_LIBRARY_DIRS})
|
2016-08-10 19:28:33 +08:00
|
|
|
link_directories(${OPUS_LIBRARY_DIRS})
|
|
|
|
link_directories(${VPX_LIBRARY_DIRS})
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
if(CHECK_FOUND)
|
|
|
|
include_directories(${CHECK_INCLUDE_DIRS})
|
|
|
|
endif()
|
|
|
|
if(LIBCONFIG_FOUND)
|
|
|
|
include_directories(${LIBCONFIG_INCLUDE_DIRS})
|
|
|
|
endif()
|
2016-08-11 02:39:59 +08:00
|
|
|
include_directories(${LIBSODIUM_INCLUDE_DIRS})
|
2016-08-10 19:28:33 +08:00
|
|
|
include_directories(${OPUS_INCLUDE_DIRS})
|
|
|
|
include_directories(${VPX_INCLUDE_DIRS})
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
if(CHECK_FOUND)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CHECK_CFLAGS_OTHER}")
|
|
|
|
endif()
|
|
|
|
if(LIBCONFIG_FOUND)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LIBCONFIG_CFLAGS_OTHER}")
|
|
|
|
endif()
|
2016-08-11 02:39:59 +08:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LIBSODIUM_CFLAGS_OTHER}")
|
2016-08-10 19:28:33 +08:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OPUS_CFLAGS_OTHER}")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${VPX_CFLAGS_OTHER}")
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
# Users can call cmake -DLIBTYPE=STATIC or -DLIBTYPE=SHARED to override this.
|
|
|
|
if(NOT LIBTYPE)
|
|
|
|
if(WIN32)
|
|
|
|
# Our win32 builds are fully static, since we use the MXE cross compiling
|
|
|
|
# environment, which builds everything statically by default. Building
|
|
|
|
# shared libraries will result in multiple definition errors, since multiple
|
|
|
|
# tox libraries will link against libsodium and other libraries that are
|
|
|
|
# built statically in MXE.
|
|
|
|
set(LIBTYPE STATIC)
|
|
|
|
else()
|
|
|
|
set(LIBTYPE SHARED)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Libraries.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
add_library(toxcore ${LIBTYPE}
|
2016-08-10 19:28:33 +08:00
|
|
|
toxcore/DHT.c
|
|
|
|
toxcore/LAN_discovery.c
|
|
|
|
toxcore/Messenger.c
|
|
|
|
toxcore/TCP_client.c
|
|
|
|
toxcore/TCP_connection.c
|
|
|
|
toxcore/TCP_server.c
|
|
|
|
toxcore/assoc.c
|
|
|
|
toxcore/crypto_core.c
|
|
|
|
toxcore/friend_connection.c
|
|
|
|
toxcore/friend_requests.c
|
|
|
|
toxcore/group.c
|
|
|
|
toxcore/list.c
|
|
|
|
toxcore/logger.c
|
|
|
|
toxcore/net_crypto.c
|
|
|
|
toxcore/network.c
|
|
|
|
toxcore/onion.c
|
|
|
|
toxcore/onion_announce.c
|
|
|
|
toxcore/onion_client.c
|
|
|
|
toxcore/ping.c
|
|
|
|
toxcore/ping_array.c
|
|
|
|
toxcore/tox.c
|
|
|
|
toxcore/util.c)
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
target_link_libraries(toxcore ${LIBSODIUM_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
if(CMAKE_THREAD_LIBS_INIT)
|
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} "-l${CMAKE_THREAD_LIBS_INIT}")
|
|
|
|
endif()
|
2016-08-11 02:39:59 +08:00
|
|
|
if(RT_LIBRARIES)
|
|
|
|
target_link_libraries(toxcore ${RT_LIBRARIES})
|
2016-08-11 20:49:49 +08:00
|
|
|
set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} "-lrt")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
target_link_libraries(toxcore ws2_32 iphlpapi)
|
2016-08-11 02:39:59 +08:00
|
|
|
endif()
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
add_library(toxav ${LIBTYPE}
|
2016-08-10 19:28:33 +08:00
|
|
|
toxav/audio.c
|
|
|
|
toxav/bwcontroller.c
|
|
|
|
toxav/group.c
|
|
|
|
toxav/msi.c
|
|
|
|
toxav/rtp.c
|
|
|
|
toxav/toxav.c
|
|
|
|
toxav/toxav_old.c
|
|
|
|
toxav/video.c)
|
|
|
|
|
|
|
|
target_link_libraries(toxav toxcore)
|
|
|
|
target_link_libraries(toxav ${OPUS_LIBRARIES})
|
|
|
|
target_link_libraries(toxav ${VPX_LIBRARIES})
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
add_library(toxdns ${LIBTYPE}
|
2016-08-10 19:28:33 +08:00
|
|
|
toxdns/toxdns.c)
|
|
|
|
|
|
|
|
target_link_libraries(toxdns toxcore)
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
add_library(toxencryptsave ${LIBTYPE}
|
2016-08-10 19:28:33 +08:00
|
|
|
toxencryptsave/toxencryptsave.c)
|
|
|
|
|
|
|
|
target_link_libraries(toxencryptsave toxcore)
|
|
|
|
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Automated regression tests.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
function(auto_test target)
|
|
|
|
if(CHECK_FOUND)
|
|
|
|
add_executable(auto_${target} auto_tests/${target}.c)
|
|
|
|
target_link_libraries(auto_${target}
|
|
|
|
toxcore
|
|
|
|
toxav
|
|
|
|
toxencryptsave
|
2016-08-11 20:49:49 +08:00
|
|
|
${CHECK_LIBRARIES})
|
2016-08-10 19:28:33 +08:00
|
|
|
add_test(${target} auto_${target})
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
auto_test(TCP_test)
|
|
|
|
auto_test(assoc_test)
|
|
|
|
auto_test(crypto_test)
|
|
|
|
auto_test(dht_test)
|
|
|
|
auto_test(encryptsave_test)
|
|
|
|
# This test doesn't link (missing symbol).
|
|
|
|
#auto_test(friends_test)
|
|
|
|
auto_test(messenger_test)
|
|
|
|
auto_test(network_test)
|
|
|
|
auto_test(onion_test)
|
|
|
|
auto_test(skeleton_test)
|
|
|
|
auto_test(tox_test)
|
|
|
|
auto_test(toxav_basic_test)
|
|
|
|
auto_test(toxav_many_test)
|
|
|
|
|
|
|
|
|
2016-08-11 02:39:59 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Bootstrap daemon.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
if(LIBCONFIG_FOUND)
|
|
|
|
add_executable(tox-bootstrapd
|
|
|
|
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_defaults.h
|
|
|
|
other/bootstrap_daemon/src/config.h
|
|
|
|
other/bootstrap_daemon/src/log.c
|
|
|
|
other/bootstrap_daemon/src/log.h
|
|
|
|
other/bootstrap_daemon/src/tox-bootstrapd.c
|
|
|
|
other/bootstrap_daemon/src/global.h
|
|
|
|
other/bootstrap_node_packets.c
|
|
|
|
other/bootstrap_node_packets.h)
|
|
|
|
|
|
|
|
target_link_libraries(tox-bootstrapd toxcore ${LIBCONFIG_LIBRARIES})
|
|
|
|
endif()
|
2016-08-11 02:39:59 +08:00
|
|
|
|
|
|
|
|
2016-08-10 19:28:33 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Test programs.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
if(NOT WIN32)
|
|
|
|
add_executable(nTox testing/nTox.c)
|
|
|
|
target_link_libraries(nTox toxcore ncurses)
|
|
|
|
endif()
|
2016-08-10 19:28:33 +08:00
|
|
|
|
|
|
|
add_executable(DHT_test testing/DHT_test.c)
|
2016-08-11 20:49:49 +08:00
|
|
|
target_link_libraries(DHT_test toxcore)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
|
|
|
add_executable(Messenger_test testing/Messenger_test.c)
|
2016-08-11 20:49:49 +08:00
|
|
|
target_link_libraries(Messenger_test toxcore)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
|
|
|
add_executable(dns3_test testing/dns3_test.c)
|
2016-08-11 20:49:49 +08:00
|
|
|
target_link_libraries(dns3_test toxdns)
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
if(NOT WIN32)
|
|
|
|
add_executable(tox_sync testing/tox_sync.c)
|
|
|
|
target_link_libraries(tox_sync toxcore)
|
|
|
|
endif()
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
if(UTIL_LIBRARIES)
|
|
|
|
add_executable(tox_shell testing/tox_shell.c)
|
|
|
|
target_link_libraries(tox_shell toxcore ${UTIL_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT WIN32)
|
|
|
|
add_executable(irc_syncbot testing/irc_syncbot.c)
|
|
|
|
target_link_libraries(irc_syncbot toxcore)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# :: Installation and pkg-config.
|
|
|
|
#
|
|
|
|
################################################################################
|
2016-08-10 19:28:33 +08:00
|
|
|
|
2016-08-11 20:49:49 +08:00
|
|
|
configure_file(
|
|
|
|
"${CMAKE_SOURCE_DIR}/other/pkgconfig/toxav.pc.in"
|
|
|
|
"${CMAKE_BINARY_DIR}/toxav.pc"
|
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
|
|
|
|
configure_file(
|
|
|
|
"${CMAKE_SOURCE_DIR}/other/pkgconfig/toxcore.pc.in"
|
|
|
|
"${CMAKE_BINARY_DIR}/toxcore.pc"
|
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
|
|
|
|
configure_file(
|
|
|
|
"${CMAKE_SOURCE_DIR}/other/pkgconfig/toxdns.pc.in"
|
|
|
|
"${CMAKE_BINARY_DIR}/toxdns.pc"
|
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
|
|
|
|
configure_file(
|
|
|
|
"${CMAKE_SOURCE_DIR}/other/pkgconfig/toxencryptsave.pc.in"
|
|
|
|
"${CMAKE_BINARY_DIR}/toxencryptsave.pc"
|
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
install(FILES
|
|
|
|
${CMAKE_BINARY_DIR}/toxav.pc
|
|
|
|
${CMAKE_BINARY_DIR}/toxcore.pc
|
|
|
|
${CMAKE_BINARY_DIR}/toxdns.pc
|
|
|
|
${CMAKE_BINARY_DIR}/toxencryptsave.pc
|
|
|
|
DESTINATION "lib/pkgconfig")
|
|
|
|
install(TARGETS
|
|
|
|
toxav
|
|
|
|
toxcore
|
|
|
|
toxdns
|
|
|
|
toxencryptsave
|
|
|
|
DESTINATION "lib")
|
|
|
|
install(FILES
|
|
|
|
toxav/toxav.h
|
|
|
|
toxcore/tox.h
|
|
|
|
toxcore/tox_old.h
|
|
|
|
toxdns/toxdns.h
|
|
|
|
toxencryptsave/toxencryptsave.h
|
|
|
|
DESTINATION "include/tox")
|