summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 52c8b10fc291e125f24b7c3e6cd0300ad76a33b5 (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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
cmake_minimum_required(VERSION 2.8.6)
project(toxcore)
include(CTest)

# This version is for the entire project. All libraries (core, av, ...) move in
# versions in a synchronised way.
set(PROJECT_VERSION "0.0.0")


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

set(CMAKE_MACOSX_RPATH ON)

option(DEBUG "Enable assertions and other debugging facilities" OFF)
if(DEBUG)
  add_definitions(-DTOX_DEBUG=1)
  add_definitions(-DMIN_LOGGER_LEVEL=LOG_TRACE)
endif()

option(ASSOC_DHT "Enable module to store currently unused ID <=> IP associations" OFF)
if(ASSOC_DHT)
  add_definitions(-DENABLE_ASSOC_DHT=1)
endif()

find_package(PkgConfig REQUIRED)
find_package(Threads   REQUIRED)

find_library(UTIL_LIBRARIES          util         )
find_library(RT_LIBRARIES            rt           )

# For toxcore.
pkg_search_module(LIBSODIUM REQUIRED libsodium    )

# For toxav.
pkg_search_module(OPUS      REQUIRED opus         )
pkg_search_module(VPX       REQUIRED vpx          )

# For tox-bootstrapd.
pkg_search_module(LIBCONFIG          libconfig    )

# For auto tests.
pkg_search_module(CHECK              check        )

# For av_test.
pkg_search_module(OPENCV             opencv       )
pkg_search_module(PORTAUDIO          portaudio-2.0)
pkg_search_module(SNDFILE            sndfile      )

# TODO(iphydf): fold the pkg_search_module call into this function.
function(pkg_use_module mod)
  if(${mod}_FOUND)
    link_directories(${${mod}_LIBRARY_DIRS})
    include_directories(${${mod}_INCLUDE_DIRS})
    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${${mod}_CFLAGS_OTHER}")
  endif()
endfunction()

pkg_use_module(LIBSODIUM)

pkg_use_module(OPUS)
pkg_use_module(VPX)

pkg_use_module(LIBCONFIG)

pkg_use_module(CHECK)

pkg_use_module(OPENCV)
pkg_use_module(PORTAUDIO)
pkg_use_module(SNDFILE)


# 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()


################################################################################
#
# :: Tox Core Library
#
################################################################################

# 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)

# LAYER 1: Crypto core
# --------------------
add_library(toxcrypto ${LIBTYPE}
  toxcore/crypto_core.c)
target_link_libraries(toxcrypto ${LIBSODIUM_LIBRARIES})

# LAYER 2: Basic networking
# -------------------------
add_library(toxnetwork ${LIBTYPE}
  toxcore/logger.c
  toxcore/network.c
  toxcore/util.c)
target_link_libraries(toxnetwork toxcrypto)

if(CMAKE_THREAD_LIBS_INIT)
  target_link_libraries(toxnetwork ${CMAKE_THREAD_LIBS_INIT})
  set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} "-l${CMAKE_THREAD_LIBS_INIT}")
endif()

if(RT_LIBRARIES)
  target_link_libraries(toxnetwork ${RT_LIBRARIES})
  set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} "-lrt")
endif()

if(WIN32)
  target_link_libraries(toxnetwork ws2_32 iphlpapi)
  set(toxcore_PKGCONFIG_LIBS ${toxcore_PKGCONFIG_LIBS} "-lws2_32 -liphlpapi")
endif()

# LAYER 3: Distributed Hash Table
# -------------------------------
add_library(toxdht ${LIBTYPE}
  toxcore/DHT.c
  toxcore/LAN_discovery.c
  toxcore/assoc.c
  toxcore/ping.c
  toxcore/ping_array.c)
target_link_libraries(toxdht toxnetwork)

# LAYER 4: Onion routing, TCP connections, crypto connections
# -----------------------------------------------------------
add_library(toxnetcrypto ${LIBTYPE}
  toxcore/TCP_client.c
  toxcore/TCP_connection.c
  toxcore/TCP_server.c
  toxcore/list.c
  toxcore/net_crypto.c
  toxcore/onion.c
  toxcore/onion_announce.c
  toxcore/onion_client.c)
target_link_libraries(toxnetcrypto toxdht)

# LAYER 5: Friend requests and connections
# ----------------------------------------
add_library(toxfriends ${LIBTYPE}
  toxcore/friend_connection.c
  toxcore/friend_requests.c)
target_link_libraries(toxfriends toxnetcrypto)

# LAYER 6: Tox messenger
# ----------------------
add_library(toxmessenger ${LIBTYPE}
  toxcore/Messenger.c)
target_link_libraries(toxmessenger toxfriends)

# LAYER 7: Group chats
# --------------------
add_library(toxgroup ${LIBTYPE}
  toxcore/group.c)
target_link_libraries(toxgroup toxmessenger)

# LAYER 8: Public API
# -------------------
add_library(toxcore ${LIBTYPE}
  toxcore/tox.c
  toxcore/tox_group.c)
target_link_libraries(toxcore toxgroup)


################################################################################
#
# :: Audio/Video Library
#
################################################################################

add_library(toxav ${LIBTYPE}
  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 ${OPUS_LIBRARIES} ${VPX_LIBRARIES})


################################################################################
#
# :: ToxDNS and block encryption libraries
#
################################################################################

add_library(toxdns ${LIBTYPE}
  toxdns/toxdns.c)
target_link_libraries(toxdns toxcore)

add_library(toxencryptsave ${LIBTYPE}
  toxencryptsave/toxencryptsave.c)
target_link_libraries(toxencryptsave toxcore)


################################################################################
#
# :: Automated regression tests
#
################################################################################

add_test(format_test
  ${CMAKE_SOURCE_DIR}/other/astyle/format-source "${CMAKE_SOURCE_DIR}")

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})
    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)
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)


################################################################################
#
# :: Bootstrap daemon
#
################################################################################

add_executable(DHT_bootstrap
  other/DHT_bootstrap.c
  other/bootstrap_node_packets.c)
target_link_libraries(DHT_bootstrap toxnetcrypto)

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 toxnetcrypto ${LIBCONFIG_LIBRARIES})
endif()


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

if(NOT WIN32 AND SNDFILE_FOUND AND PORTAUDIO_FOUND AND OPENCV_FOUND)
  add_executable(av_test testing/av_test.c)
  target_link_libraries(av_test
    toxav
    ${OPENCV_LIBRARIES}
    ${PORTAUDIO_LIBRARIES}
    ${SNDFILE_LIBRARIES})
endif()

if(NOT WIN32)
  add_executable(nTox testing/nTox.c)
  target_link_libraries(nTox toxcore ncurses)
endif()

add_executable(DHT_test testing/DHT_test.c)
target_link_libraries(DHT_test toxdht)

add_executable(Messenger_test testing/Messenger_test.c)
target_link_libraries(Messenger_test toxmessenger)

add_executable(dns3_test testing/dns3_test.c)
target_link_libraries(dns3_test toxdns)

if(NOT WIN32)
  add_executable(tox_sync testing/tox_sync.c)
  target_link_libraries(tox_sync toxcore)
endif()

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
#
################################################################################

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
  toxcrypto
  toxdht
  toxdns
  toxencryptsave
  toxfriends
  toxgroup
  toxmessenger
  toxnetcrypto
  toxnetwork
  DESTINATION "lib")
install(FILES
  toxav/toxav.h
  toxcore/tox.h
  toxcore/tox_group.h
  toxdns/toxdns.h
  toxencryptsave/toxencryptsave.h
  DESTINATION "include/tox")