mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
21 lines
603 B
Python
21 lines
603 B
Python
from build.protobuf import proto, protocc
|
|
from build.c import cxxlibrary
|
|
|
|
proto(name="proto", srcs=["./fluxsink.proto"], deps=["lib+common_proto"])
|
|
protocc(name="proto_lib", srcs=[".+proto"], deps=["lib+common_proto_lib"])
|
|
|
|
cxxlibrary(
|
|
name="fluxsink",
|
|
srcs=[
|
|
"./a2rfluxsink.cc",
|
|
"./aufluxsink.cc",
|
|
"./fl2fluxsink.cc",
|
|
"./fluxsink.cc",
|
|
"./hardwarefluxsink.cc",
|
|
"./scpfluxsink.cc",
|
|
"./vcdfluxsink.cc",
|
|
],
|
|
hdrs={"lib/fluxsink/fluxsink.h": "./fluxsink.h"},
|
|
deps=["lib/core", "lib/config", "lib/data", "lib/external","lib/usb"],
|
|
)
|