mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
13 lines
287 B
13 lines
287 B
12 years ago
|
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)
|