externals: Add fmt subtree

Merge commit 'a9f62a15cd' as 'externals/fmt'
This commit is contained in:
MerryMage 2020-04-22 20:24:48 +01:00
commit bd1c5c28ee
162 changed files with 72229 additions and 0 deletions

15
externals/fmt/Android.mk vendored Normal file
View file

@ -0,0 +1,15 @@
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)