mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
e092eee869
By default libsodium is used. Only if --enable-nacl is specified, then nacl will be used instead of libsodium. Pass locations of nacl headers and libraries by using the following options: --with-nacl-headers=/home/me/somewhere/nacl-20110221/build/469/include/amd64/ --with-nacl-libs=/home/me/somewhere/nacl-20110221/build/469/lib/amd64/
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
if BUILD_TESTS
|
|
|
|
TESTS = messenger_autotest crypto_test
|
|
|
|
check_PROGRAMS = messenger_autotest crypto_test
|
|
|
|
messenger_autotest_SOURCES = \
|
|
../auto_tests/messenger_test.c
|
|
|
|
messenger_autotest_CFLAGS = \
|
|
$(LIBSODIUM_CFLAGS) \
|
|
$(NACL_CFLAGS) \
|
|
$(CHECK_CFLAGS)
|
|
|
|
messenger_autotest_LDADD = \
|
|
$(LIBSODIUM_LDFLAGS) \
|
|
$(NACL_LDFLAGS) \
|
|
libtoxcore.la \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(NACL_LIBS) \
|
|
$(CHECK_LIBS)
|
|
|
|
|
|
crypto_test_SOURCES = ../auto_tests/crypto_test.c
|
|
|
|
crypto_test_CFLAGS = $(LIBSODIUM_CFLAGS) \
|
|
$(NACL_CFLAGS) \
|
|
$(CHECK_CFLAGS)
|
|
|
|
crypto_test_LDADD = $(LIBSODIUM_LDFLAGS) \
|
|
$(NACL_LDFLAGS) \
|
|
libtoxcore.la \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(NACL_LIBS) \
|
|
$(CHECK_LIBS)
|
|
|
|
endif
|
|
|
|
EXTRA_DIST += $(top_srcdir)/auto_tests/friends_test.c
|
|
|