-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
57 lines (55 loc) · 1.72 KB
/
CMakeLists.txt
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
find_package(Boost REQUIRED
COMPONENTS system filesystem)
include_directories(${Boost_INCLUDE_DIRS})
build_lib(
LIBNAME sparkrtc
SOURCE_FILES
model/game-client.cc
model/game-server.cc
model/network-packet-header.cc
model/network-packet.cc
model/packet-group.cc
model/packet-receiver.cc
model/packet-sender.cc
model/video-decoder.cc
model/video-encoder.cc
model/fec/fec-policy.cc
model/fec/hairpin-policy.cc
model/fec/webrtc-policy.cc
model/fec/other-policy.cc
model/fec/webrtc-fec-array.cc
model/fec/webrtc-adjust-array.cc
model/congestion-control/rtc_base/checks.cc
model/congestion-control/sender-based-controller.cc
model/congestion-control/nada-controller.cc
model/congestion-control/gcc-controller.cc
HEADER_FILES
model/common-header.h
model/game-client.h
model/game-server.h
model/network-packet-header.h
model/network-packet.h
model/packet-group.h
model/packet-receiver.h
model/packet-sender.h
model/video-decoder.h
model/video-encoder.h
model/fec/fec-policy.h
model/fec/hairpin-policy.h
model/fec/webrtc-policy.h
model/fec/other-policy.h
model/fec/webrtc-fec-array.h
model/fec/webrtc-adjust-array.h
model/congestion-control/rtc_base/checks.h
model/congestion-control/rtc_base/type_traits.h
model/congestion-control/rtc_base/numeric/safe_compare.h
model/congestion-control/rtc_base/numeric/safe_minmax.h
model/congestion-control/rtc_base/system/inline.h
model/congestion-control/sender-based-controller.h
model/congestion-control/nada-controller.h
model/congestion-control/gcc-controller.h
LIBRARIES_TO_LINK
${libnetwork}
${libinternet}
${Boost_LIBRARIES}
)