mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
13 lines
225 B
Python
13 lines
225 B
Python
from build.protobuf import proto, protocc
|
|
|
|
proto(
|
|
name="proto",
|
|
srcs=["./imagereader.proto"],
|
|
deps=["lib+common_proto"],
|
|
)
|
|
protocc(
|
|
name="proto_lib",
|
|
srcs=[".+proto"],
|
|
deps=["lib+common_proto_lib"],
|
|
)
|