mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
f60900c4b8
Toxcore itself doesn't use this data structure. Only toxav does, so now toxav owns the code for it.
45 lines
1.4 KiB
Makefile
45 lines
1.4 KiB
Makefile
if BUILD_AV
|
|
|
|
lib_LTLIBRARIES += libtoxav.la
|
|
libtoxav_la_include_HEADERS = ../toxav/toxav.h
|
|
libtoxav_la_includedir = $(includedir)/tox
|
|
|
|
libtoxav_la_SOURCES = ../toxav/rtp.h \
|
|
../toxav/rtp.c \
|
|
../toxav/msi.h \
|
|
../toxav/msi.c \
|
|
../toxav/group.h \
|
|
../toxav/group.c \
|
|
../toxav/audio.h \
|
|
../toxav/audio.c \
|
|
../toxav/video.h \
|
|
../toxav/video.c \
|
|
../toxav/bwcontroller.h \
|
|
../toxav/bwcontroller.c \
|
|
../toxav/ring_buffer.h \
|
|
../toxav/ring_buffer.c \
|
|
../toxav/toxav.h \
|
|
../toxav/toxav.c \
|
|
../toxav/toxav_old.c
|
|
|
|
libtoxav_la_CFLAGS = -I../toxcore \
|
|
-I../toxav \
|
|
$(LIBSODIUM_CFLAGS) \
|
|
$(NACL_CFLAGS) \
|
|
$(AV_CFLAGS) \
|
|
$(PTHREAD_CFLAGS)
|
|
|
|
libtoxav_la_LDFLAGS = $(TOXAV_LT_LDFLAGS) \
|
|
$(LIBSODIUM_LDFLAGS) \
|
|
$(NACL_LDFLAGS) \
|
|
$(EXTRA_LT_LDFLAGS) \
|
|
$(WINSOCK2_LIBS)
|
|
|
|
libtoxav_la_LIBADD = libtoxcore.la \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(NACL_LIBS) \
|
|
$(PTHREAD_LIBS) \
|
|
$(AV_LIBS)
|
|
|
|
endif
|