bd1c5c28ee
Merge commit 'a9f62a15cdc6528b804d214325488ba52c619313' as 'externals/fmt'
15 lines
296 B
Makefile
15 lines
296 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := fmt_static
|
|
LOCAL_MODULE_FILENAME := libfmt
|
|
|
|
LOCAL_SRC_FILES := fmt/format.cc
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
LOCAL_CFLAGS += -std=c++11 -fexceptions
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|