mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
29 lines
634 B
Python
29 lines
634 B
Python
from build.c import cxxlibrary
|
|
|
|
cxxlibrary(
|
|
name="core",
|
|
srcs=[
|
|
"./bitmap.cc",
|
|
"./bytes.cc",
|
|
"./crc.cc",
|
|
"./csvreader.cc",
|
|
"./hexdump.cc",
|
|
"./utils.cc",
|
|
"./logger.cc",
|
|
],
|
|
hdrs={
|
|
"lib/core/bitmap.h": "./bitmap.h",
|
|
"lib/core/bytes.h": "./bytes.h",
|
|
"lib/core/crc.h": "./crc.h",
|
|
"lib/core/csvreader.h": "./csvreader.h",
|
|
"lib/core/globals.h": "./globals.h",
|
|
"lib/core/utils.h": "./utils.h",
|
|
"lib/core/logger.h": "./logger.h",
|
|
},
|
|
deps=[
|
|
"dep/agg",
|
|
"dep/stb",
|
|
"+fmt_lib",
|
|
],
|
|
)
|