From 4b8487f164b7187ba61c901c8a767727f34da466 Mon Sep 17 00:00:00 2001 From: David Given Date: Sun, 13 Oct 2024 23:27:12 +0200 Subject: [PATCH] Add missing file. --- lib/data/build.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/data/build.py diff --git a/lib/data/build.py b/lib/data/build.py new file mode 100644 index 00000000..8602091b --- /dev/null +++ b/lib/data/build.py @@ -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"], +)