11 lines
221 B
Makefile
11 lines
221 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := example
|
|
LOCAL_SRC_FILES := example.cpp
|
|
LOCAL_STATIC_LIBRARIES := libcxx
|
|
LOCAL_LDLIBS := -llog
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include jni/libcxx/Android.mk
|