mirror of
				https://github.com/fmtlib/fmt.git
				synced 2025-11-04 08:01:40 +01: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)
							 | 
						||
| 
								 | 
							
								
							 |