mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
17 lines
508 B
Python
17 lines
508 B
Python
from build.c import cxxlibrary, HostToolchain
|
|
|
|
cxxlibrary(
|
|
name="fmt",
|
|
srcs=[
|
|
"./src/format.cc",
|
|
"./src/os.cc",
|
|
],
|
|
cflags=["-Idep/fmt/include"],
|
|
hdrs={
|
|
"fmt/args.h": "./include/fmt/args.h",
|
|
"fmt/chrono.h": "./include/fmt/chrono.h",
|
|
"fmt/core.h": "./include/fmt/core.h",
|
|
"fmt/format.h": "./include/fmt/format.h",
|
|
"fmt/ostream.h": "./include/fmt/ostream.h",
|
|
"fmt/ranges.h": "./include/fmt/ranges.h",
|
|
}) |