mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 11:06:25 +00:00
12 lines
233 B
Makefile
12 lines
233 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := status-logs
|
|
LOCAL_SRC_FILES := Log.c
|
|
|
|
LOCAL_CPPFLAGS := -std=c++11 -fexceptions -I$(LOCAL_PATH)/include
|
|
LOCAL_LDFLAGS := -llog
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|