You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.3 KiB
64 lines
2.3 KiB
LOCAL_PATH:= $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_C_INCLUDES := \ |
|
$(LOCAL_PATH)/feature_stab/db_vlvm \ |
|
$(LOCAL_PATH)/feature_stab/src \ |
|
$(LOCAL_PATH)/feature_stab/src/dbreg \ |
|
$(LOCAL_PATH)/feature_mos/src \ |
|
$(LOCAL_PATH)/feature_mos/src/mosaic |
|
|
|
LOCAL_CFLAGS := -O3 -DNDEBUG |
|
LOCAL_CFLAGS += -Wall -Werror |
|
# suppress existing non-critical warnings |
|
LOCAL_CFLAGS += \ |
|
-Wno-gnu-static-float-init \ |
|
-Wno-non-literal-null-conversion \ |
|
-Wno-self-assign \ |
|
-Wno-unused-parameter \ |
|
-Wno-unused-variable \ |
|
-Wno-unused-function \ |
|
|
|
# some warnings should be fixed |
|
LOCAL_CFLAGS += \ |
|
-Wno-error=sometimes-uninitialized \ |
|
|
|
LOCAL_CPPFLAGS := -std=gnu++98 |
|
|
|
LOCAL_SRC_FILES := \ |
|
feature_mos_jni.cpp \ |
|
mosaic_renderer_jni.cpp \ |
|
feature_mos/src/mosaic/trsMatrix.cpp \ |
|
feature_mos/src/mosaic/AlignFeatures.cpp \ |
|
feature_mos/src/mosaic/Blend.cpp \ |
|
feature_mos/src/mosaic/Delaunay.cpp \ |
|
feature_mos/src/mosaic/ImageUtils.cpp \ |
|
feature_mos/src/mosaic/Mosaic.cpp \ |
|
feature_mos/src/mosaic/Pyramid.cpp \ |
|
feature_mos/src/mosaic_renderer/Renderer.cpp \ |
|
feature_mos/src/mosaic_renderer/WarpRenderer.cpp \ |
|
feature_mos/src/mosaic_renderer/SurfaceTextureRenderer.cpp \ |
|
feature_mos/src/mosaic_renderer/YVURenderer.cpp \ |
|
feature_mos/src/mosaic_renderer/FrameBuffer.cpp \ |
|
feature_stab/db_vlvm/db_feature_detection.cpp \ |
|
feature_stab/db_vlvm/db_feature_matching.cpp \ |
|
feature_stab/db_vlvm/db_framestitching.cpp \ |
|
feature_stab/db_vlvm/db_image_homography.cpp \ |
|
feature_stab/db_vlvm/db_rob_image_homography.cpp \ |
|
feature_stab/db_vlvm/db_utilities.cpp \ |
|
feature_stab/db_vlvm/db_utilities_camera.cpp \ |
|
feature_stab/db_vlvm/db_utilities_indexing.cpp \ |
|
feature_stab/db_vlvm/db_utilities_linalg.cpp \ |
|
feature_stab/db_vlvm/db_utilities_poly.cpp \ |
|
feature_stab/src/dbreg/dbreg.cpp \ |
|
feature_stab/src/dbreg/dbstabsmooth.cpp \ |
|
feature_stab/src/dbreg/vp_motionmodel.c |
|
|
|
LOCAL_SHARED_LIBRARIES := liblog libnativehelper libGLESv2 |
|
#LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -ldl -llog -lGLESv2 -L$(TARGET_OUT) |
|
|
|
LOCAL_MODULE_TAGS := optional |
|
|
|
LOCAL_MODULE := libjni_legacymosaic |
|
include $(BUILD_SHARED_LIBRARY)
|
|
|