mirror of
https://github.com/opencv/opencv.git
synced 2024-12-11 22:59:16 +08:00
13 lines
287 B
Makefile
13 lines
287 B
Makefile
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE := native_activity
|
||
|
LOCAL_SRC_FILES := native.cpp
|
||
|
LOCAL_LDLIBS := -lm -llog -landroid
|
||
|
LOCAL_STATIC_LIBRARIES := android_native_app_glue
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|
||
|
|
||
|
$(call import-module,android/native_app_glue)
|