mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			431 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			431 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from build.c import cxxlibrary
 | |
| 
 | |
| cxxlibrary(
 | |
|     name="algorithms",
 | |
|     srcs=["./readerwriter.cc"],
 | |
|     hdrs={
 | |
|         "lib/algorithms/readerwriter.h": "./readerwriter.h",
 | |
|     },
 | |
|     deps=[
 | |
|         "lib/core",
 | |
|         "lib/config",
 | |
|         "lib/data",
 | |
|         "lib/usb",
 | |
|         "lib/encoders",
 | |
|         "lib/decoders",
 | |
|         "lib/fluxsource",
 | |
|         "lib/fluxsink",
 | |
|         "lib/imagereader",
 | |
|         "lib/imagewriter",
 | |
|     ],
 | |
| )
 |