326d72a965
Some checks are pending
ContinuousDelivery / linux-ubuntu (push) Waiting to run
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Waiting to run
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Waiting to run
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Waiting to run
ContinuousDelivery / windows (push) Waiting to run
ContinuousDelivery / windows-asan (push) Waiting to run
ContinuousDelivery / release (push) Blocked by required conditions
ContinuousIntegration / linux (push) Waiting to run
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Waiting to run
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Waiting to run
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Waiting to run
ContinuousIntegration / macos (push) Waiting to run
ContinuousIntegration / windows (push) Waiting to run
Merge commit 'cae0ab9c5c75eda665d21dc36cfeef48c1e04b53'
49 lines
1.5 KiB
Makefile
49 lines
1.5 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/groupav.h \
|
|
../toxav/groupav.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_hacks.h \
|
|
../toxav/toxav.c \
|
|
../toxav/toxav_old.c
|
|
|
|
libtoxav_la_CFLAGS = -I../toxcore \
|
|
-I../toxav \
|
|
$(LIBSODIUM_CFLAGS) \
|
|
$(AV_CFLAGS) \
|
|
$(PTHREAD_CFLAGS)
|
|
|
|
libtoxav_la_LDFLAGS = $(LT_LDFLAGS) \
|
|
$(LIBSODIUM_LDFLAGS) \
|
|
$(EXTRA_LT_LDFLAGS) \
|
|
$(WINSOCK2_LIBS)
|
|
|
|
libtoxav_la_LIBADD = libtoxcore.la \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(PTHREAD_LIBS) \
|
|
$(AV_LIBS)
|
|
|
|
if SET_SO_VERSION
|
|
|
|
EXTRA_libtoxav_la_DEPENDENCIES = ../so.version
|
|
|
|
endif
|
|
|
|
endif
|