We can now build both the CLI and GUI binaries!

This commit is contained in:
David Given
2023-10-22 21:20:47 +02:00
parent 986be921f4
commit a24fe420c4
16 changed files with 256 additions and 13 deletions

View File

@@ -12,4 +12,8 @@ clibrary(name="protocol", hdrs={"protocol.h": "./protocol.h"})
proto(name="fl2_proto", srcs=["lib/fl2.proto"])
protocc(name="fl2_proto_lib", srcs=["+fl2_proto"])
export(name="all", items={"fluxengine": "src+fluxengine"}, deps=["+protocol"])
export(
name="all",
items={"fluxengine": "src+fluxengine", "fluxengine-gui": "src/gui"},
deps=["+protocol"],
)