Allow copying font files to the Fonts subdirectory of the app bundle, private fonts can only be loaded from there under macOS currently.
		
			
				
	
	
		
			22 lines
		
	
	
		
			456 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			456 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" ?>
 | |
| <makefile>
 | |
| 
 | |
|     <set var="BUNDLE_FONT_RESOURCES">$(SRCDIR)/wxprivate.ttf</set>
 | |
| 
 | |
|     <include file="../../build/bakefiles/common_samples.bkl"/>
 | |
| 
 | |
|     <exe id="font" template="wx_sample" template_append="wx_append">
 | |
|         <sources>font.cpp</sources>
 | |
|         <wx-lib>core</wx-lib>
 | |
|         <wx-lib>base</wx-lib>
 | |
|     </exe>
 | |
| 
 | |
|     <wx-data id="data">
 | |
|         <files>
 | |
|             wxprivate.ttf
 | |
|         </files>
 | |
|     </wx-data>
 | |
| 
 | |
| 
 | |
| </makefile>
 |