mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
12 lines
223 B
Python
12 lines
223 B
Python
from build.c import cxxlibrary
|
|
from glob import glob
|
|
|
|
cxxlibrary(
|
|
name="lexy",
|
|
srcs=[],
|
|
hdrs={
|
|
h: f"./include/{h}"
|
|
for h in glob("**/*.hpp", root_dir="dep/lexy/include", recursive=True)
|
|
},
|
|
)
|