Files
fluxengine/lib/data/build.py

26 lines
707 B
Python

from build.c import cxxlibrary
cxxlibrary(
name="data",
srcs=[
"./fluxmap.cc",
"./fluxmapreader.cc",
"./fluxpattern.cc",
"./image.cc",
"./layout.cc",
"./locations.cc",
"./sector.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/locations.h": "./locations.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", "dep/lexy"],
)