Add missing file.

This commit is contained in:
David Given
2024-10-13 23:27:12 +02:00
parent a006e0bf6f
commit 4b8487f164

14
lib/data/build.py Normal file
View File

@@ -0,0 +1,14 @@
from build.c import cxxlibrary
cxxlibrary(
name="data",
srcs=["./fluxmap.cc", "./sector.cc", "./layout.cc", "./image.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",
},
deps=["lib/core", "lib/config", "+protocol"],
)