summaryrefslogtreecommitdiff
path: root/testing/Makefile.inc
diff options
context:
space:
mode:
authorAlexandre Erwin Ittner <alexandre@ittner.com.br>2014-08-30 16:43:07 -0300
committerAlexandre Erwin Ittner <alexandre@ittner.com.br>2014-08-30 16:43:07 -0300
commite4f66475d8b47ee3b289fdd75bbbce3230949eed (patch)
tree0456f8eb0e7a1eb718837249771578b0151dfdaa /testing/Makefile.inc
parentfa007a3b047812e091ec19f34e9b9ab53a2f47b3 (diff)
Add support for user avatars in the core protocol
Add a protocol and the APIs to straightforwardly support user avatars in client applications. The protocol is designed to transfer avatars in background, between friends only, and minimize network load by providing a lightweight avatar notification for local cache validation. Strict safeguards are imposed to avoid damage from non-cooperative or malicious users and to limit network usage. The complete documentation is available in docs/Avatars.md and sample code is available in testing/test_avatars.c. Code and documentation are released under the GNU GPLv3 or later, as described in the file COPYING.
Diffstat (limited to 'testing/Makefile.inc')
-rw-r--r--testing/Makefile.inc15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/Makefile.inc b/testing/Makefile.inc
index 42d89e05..6bb87913 100644
--- a/testing/Makefile.inc
+++ b/testing/Makefile.inc
@@ -105,6 +105,21 @@ tox_shell_LDADD = $(LIBSODIUM_LDFLAGS) \
105 $(NACL_LIBS) \ 105 $(NACL_LIBS) \
106 -lutil 106 -lutil
107 107
108
109noinst_PROGRAMS += test_avatars
110
111test_avatars_SOURCES = ../testing/test_avatars.c
112
113test_avatars_CFLAGS = $(LIBSODIUM_CFLAGS) \
114 $(NACL_CFLAGS)
115
116test_avatars_LDADD = $(LIBSODIUM_LDFLAGS) \
117 $(NACL_LDFLAGS) \
118 libtoxcore.la \
119 $(LIBSODIUM_LIBS) \
120 $(NACL_OBJECTS) \
121 $(NACL_LIBS)
122
108endif 123endif
109 124
110EXTRA_DIST += $(top_srcdir)/testing/misc_tools.c 125EXTRA_DIST += $(top_srcdir)/testing/misc_tools.c