mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
24 lines
620 B
Python
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"],
|
|
)
|