Skip to content

Commit

Permalink
Add missing file.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgiven committed Oct 13, 2024
1 parent a006e0b commit 4b8487f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lib/data/build.py
Original file line number Diff line number Diff line change
@@ -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"],
)

0 comments on commit 4b8487f

Please sign in to comment.