fix build

This commit is contained in:
Jeff Carr 2024-11-16 00:07:30 -06:00
parent 2da89882e5
commit 0383207f72
2 changed files with 18 additions and 4 deletions

View File

@ -1,10 +1,24 @@
.PHONY: debian
VERSION = $(shell git describe --tags)
BUILDTIME = $(shell date +%Y.%m.%d)
all: build debian
# GO111MODULE=off go build -o build main.go
all: build
@echo fixme
build: nocui gocui andlabs
build:
GO111MODULE=off go build \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
verbose:
GO111MODULE=off go build -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
install:
GO111MODULE=off go install \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
build:
goimports:
goimports -w *.go

View File

@ -10,7 +10,7 @@ var myGui *gui.Node // This is the beginning of the binary tree of widgets
// go will sit here until the window exits
func main() {
myGui = gui.New().Default()
myGui.LoadToolkit("nocui")
// myGui.LoadToolkit("nocui")
buildworld()
gui.Watchdog()