summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 5e6974cefffb6ed4562a521a8dc247df4bd03e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
cmake_minimum_required(VERSION 2.8.6)
project(toxcore)
include(CTest)


################################################################################
#
# :: Dependencies and configuration.
#
################################################################################

set(CMAKE_MACOSX_RPATH ON)

find_package(PkgConfig REQUIRED)
find_package(Threads   REQUIRED)

find_library(UTIL_LIBRARIES util)

pkg_search_module(LIBSODIUM REQUIRED libsodium)
pkg_search_module(CHECK     REQUIRED check)
pkg_search_module(OPUS      REQUIRED opus)
pkg_search_module(VPX       REQUIRED vpx)

link_directories(${LIBSODIUM_LIBRARY_DIRS})
link_directories(${CHECK_LIBRARY_DIRS})
link_directories(${OPUS_LIBRARY_DIRS})
link_directories(${VPX_LIBRARY_DIRS})

include_directories(${LIBSODIUM_INCLUDE_DIRS})
include_directories(${CHECK_INCLUDE_DIRS})
include_directories(${OPUS_INCLUDE_DIRS})
include_directories(${VPX_INCLUDE_DIRS})

set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LIBSODIUM_CFLAGS_OTHER}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CHECK_CFLAGS_OTHER}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OPUS_CFLAGS_OTHER}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${VPX_CFLAGS_OTHER}")


################################################################################
#
# :: Libraries.
#
################################################################################

add_library(toxcore SHARED
  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)

target_link_libraries(toxcore ${LIBSODIUM_LIBRARIES})
target_link_libraries(toxcore rt)

add_library(toxav SHARED
  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})

add_library(toxdns SHARED
  toxdns/toxdns.c)

target_link_libraries(toxdns toxcore)

add_library(toxencryptsave SHARED
  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
      ${CHECK_LIBRARIES}
      ${CMAKE_THREAD_LIBS_INIT})
    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)


################################################################################
#
# :: Test programs.
#
################################################################################

add_executable(nTox testing/nTox.c)
target_link_libraries(nTox toxcore ncurses ${CMAKE_THREAD_LIBS_INIT})

add_executable(DHT_test testing/DHT_test.c)
target_link_libraries(DHT_test toxcore ${CMAKE_THREAD_LIBS_INIT})

add_executable(Messenger_test testing/Messenger_test.c)
target_link_libraries(Messenger_test toxcore ${CMAKE_THREAD_LIBS_INIT})

add_executable(dns3_test testing/dns3_test.c)
target_link_libraries(dns3_test toxdns ${CMAKE_THREAD_LIBS_INIT})

add_executable(tox_sync testing/tox_sync.c)
target_link_libraries(tox_sync toxcore ${CMAKE_THREAD_LIBS_INIT})

add_executable(tox_shell testing/tox_shell.c)
target_link_libraries(tox_shell toxcore ${CMAKE_THREAD_LIBS_INIT} ${UTIL_LIBRARIES})

add_executable(irc_syncbot testing/irc_syncbot.c)
target_link_libraries(irc_syncbot toxcore ${CMAKE_THREAD_LIBS_INIT})