Added theora to libs

This commit is contained in:
pelya
2011-01-13 14:59:44 +00:00
parent 0a89f2b707
commit e7ac2e0295
56 changed files with 25221 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := theora
LOCAL_CFLAGS := -O3 -I$(LOCAL_PATH)/include -I$(LOCAL_PATH)/lib -I$(LOCAL_PATH) -DHAVE_CONFIG_H -I$(LOCAL_PATH)/../ogg/include -I$(LOCAL_PATH)/../vorbis/include
LOCAL_CPP_EXTENSION := .cpp
LOCAL_SRC_FILES := $(addprefix lib/, $(notdir $(wildcard $(LOCAL_PATH)/lib/*.c) $(wildcard $(LOCAL_PATH)/lib/*.cpp)))
LOCAL_STATIC_LIBRARIES := ogg vorbis
LOCAL_SHARED_LIBRARIES :=
LOCAL_LDLIBS :=
include $(BUILD_SHARED_LIBRARY)