mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
16 lines
304 B
Makefile
16 lines
304 B
Makefile
|
LOCAL_PATH := $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE := cppformat_static
|
||
|
LOCAL_MODULE_FILENAME := libcppformat
|
||
|
|
||
|
LOCAL_SRC_FILES := format.cc
|
||
|
|
||
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
||
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
||
|
|
||
|
LOCAL_CFLAGS += -std=c++11 -fexceptions
|
||
|
|
||
|
include $(BUILD_STATIC_LIBRARY)
|
||
|
|