Files
fluxengine/lib/data/build.py
2024-10-15 00:00:27 +02:00

24 lines
620 B
Python

from build.c import cxxlibrary
cxxlibrary(
name="data",
srcs=[
"./fluxmap.cc",
"./sector.cc",
"./layout.cc",
"./image.cc",
"./fluxmapreader.cc",
"./fluxpattern.cc",
],
hdrs={
"lib/data/flux.h": "./flux.h",
"lib/data/fluxmap.h": "./fluxmap.h",
"lib/data/sector.h": "./sector.h",
"lib/data/layout.h": "./layout.h",
"lib/data/image.h": "./image.h",
"lib/data/fluxmapreader.h": "./fluxmapreader.h",
"lib/data/fluxpattern.h": "./fluxpattern.h",
},
deps=["lib/core", "lib/config", "+protocol"],
)