blob: 3900713adda813ab8bb6ec6aebc626f0233e9e2d (
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
|
include_directories(
.
curve25519/ed25519/nacl_includes
curve25519/ed25519/additions
curve25519/ed25519/sha512
curve25519/ed25519
curve25519
)
set(protobuf_SRCS
LocalStorageProtocol.pb-c.c
WhisperTextProtocol.pb-c.c
FingerprintProtocol.pb-c.c
)
set(axolotl_SRCS
vpool.c
vpool.h
axolotl.c
axolotl.h
axolotl_types.h
axolotl_internal.h
curve.c
curve.h
hkdf.c
hkdf.h
ratchet.c
ratchet.h
protocol.c
protocol.h
session_state.c
session_state.h
session_record.c
session_record.h
session_pre_key.c
session_pre_key.h
session_builder.c
session_builder.h
session_cipher.c
session_cipher.h
key_helper.c
key_helper.h
sender_key.c
sender_key.h
sender_key_state.c
sender_key_state.h
sender_key_record.c
sender_key_record.h
group_session_builder.c
group_session_builder.h
group_cipher.c
group_cipher.h
fingerprint.c
fingerprint.h
)
add_subdirectory(curve25519)
add_subdirectory(protobuf-c)
add_library(axolotl-c
${protobuf_SRCS}
${axolotl_SRCS}
$<TARGET_OBJECTS:curve25519>
$<TARGET_OBJECTS:protobuf-c>
)
INSTALL(
FILES
axolotl.h
axolotl_types.h
curve.h
hkdf.h
ratchet.h
protocol.h
session_state.h
session_record.h
session_pre_key.h
session_builder.h
session_cipher.h
key_helper.h
sender_key.h
sender_key_state.h
sender_key_record.h
group_session_builder.h
group_cipher.h
fingerprint.h
DESTINATION include/axolotl
)
INSTALL(TARGETS axolotl-c DESTINATION lib)
|