summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-01 00:30:19 -0500
committerJeff Carr <[email protected]>2025-09-01 00:30:19 -0500
commite657015a78ddf9b9ae6cc0fbe90dd72c1a25291a (patch)
tree493cdd70a361d11003229304414068d3cfa757eb
parentea934a2814df2576a8402917d2b2b7fe16bb13b3 (diff)
stub in a build plugin option
-rw-r--r--argv.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/argv.go b/argv.go
index b94b2e6..5bc4243 100644
--- a/argv.go
+++ b/argv.go
@@ -14,6 +14,7 @@ type ArgsGui struct {
NoGui bool `arg:"--no-gui" help:"ignore all these gui problems"`
GuiPlugin string `arg:"--gui" help:"Use this gui toolkit [andlabs,gocui,nocui,stdin]"`
GuiFile string `arg:"--gui-file" help:"Use a specific plugin.so file"`
+ GuiBuild bool `arg:"--gui-build" help:"attempt to build the GUI plugins"`
GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
GuiPluginHack string `arg:"--gui-check-plugin" help:"hack to verify GO plugins load"`
}