mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			738 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			738 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from build.c import cxxlibrary
 | |
| 
 | |
| cxxlibrary(
 | |
|     name="vfs",
 | |
|     srcs=[
 | |
|         "./acorndfs.cc",
 | |
|         "./amigaffs.cc",
 | |
|         "./appledos.cc",
 | |
|         "./applesingle.cc",
 | |
|         "./brother120fs.cc",
 | |
|         "./cbmfs.cc",
 | |
|         "./cpmfs.cc",
 | |
|         "./fatfs.cc",
 | |
|         "./fluxsectorinterface.cc",
 | |
|         "./imagesectorinterface.cc",
 | |
|         "./lif.cc",
 | |
|         "./machfs.cc",
 | |
|         "./microdos.cc",
 | |
|         "./philefs.cc",
 | |
|         "./prodos.cc",
 | |
|         "./roland.cc",
 | |
|         "./smaky6fs.cc",
 | |
|         "./vfs.cc",
 | |
|         "./zdos.cc",
 | |
|     ],
 | |
|     hdrs={
 | |
|         "lib/vfs/applesingle.h": "./applesingle.h",
 | |
|         "lib/vfs/sectorinterface.h": "./sectorinterface.h",
 | |
|         "lib/vfs/vfs.h": "./vfs.h",
 | |
|     },
 | |
|     deps=["+lib"])
 |