mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-26 01:53:47 +00:00
keeping the alt 87514151c4 (diff-73a8dc1ce58605f6c5ea53548454c3bae516ec5132a29c9d7ff7edf9730c75be)
15 lines
299 B
Makefile
15 lines
299 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := fmt_static
|
|
LOCAL_MODULE_FILENAME := libfmt
|
|
|
|
LOCAL_SRC_FILES := ../src/format.cc
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
|
|
|
|
LOCAL_CFLAGS += -std=c++11 -fexceptions
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|