mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -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",
|
|
],
|
|
)
|