mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
16 lines
374 B
Makefile
16 lines
374 B
Makefile
MY_WEBRTC_COMMON_DEFS := \
|
|
-DWEBRTC_ANDROID \
|
|
-DWEBRTC_LINUX \
|
|
-DWEBRTC_CLOCK_TYPE_REALTIME
|
|
|
|
ifneq (,$(findstring armeabi,$(TARGET_ARCH_ABI)))
|
|
MY_WEBRTC_COMMON_DEFS += -DWEBRTC_ARCH_ARM
|
|
endif
|
|
|
|
ifeq ($(TARGET_ARCH_ABI), armeabi-v7a)
|
|
MY_WEBRTC_COMMON_DEFS += -DWEBRTC_DETECT_ARM_NEON
|
|
endif
|
|
|
|
#turn off warnings since we cannot fix them
|
|
MY_WEBRTC_COMMON_DEFS += -w
|
|
|