mirror of
				https://github.com/fmtlib/fmt.git
				synced 2025-11-03 15:41:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			296 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 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)
 | 
						|
 |