use -tags x11 on Linux

This commit is contained in:
Drew Weymouth
2026-06-29 17:32:59 -07:00
parent 116d56d0e8
commit cb828d84c9
+7 -1
View File
@@ -1,5 +1,11 @@
GO_TAGS := migrated_fynedo
ifeq ($(shell uname -s),Linux)
GO_TAGS := $(GO_TAGS),x11
endif
build:
go build -tags migrated_fynedo
go build -tags "$(GO_TAGS)"
# dylibbundler doesn't seem to pick up on the Python framework dependency,
# so the last 3 cmds move it over manually. This is a bit fragile though