test plugins

This commit is contained in:
Jeff Carr 2024-12-05 17:40:08 -06:00
parent 87f53b432f
commit 5c49d0eb3d
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ gocui: build
./testGui --gui gocui ./testGui --gui gocui
install: install:
GO111MODULE=off go install \ go install \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
check-git-clean: check-git-clean:

View File

@ -17,10 +17,10 @@ func main() {
// setup the GUI // setup the GUI
me.myGui = gui.New() me.myGui = gui.New()
testLoad("nocui") // testLoad("nocui")
// testLoad("gocui")
// testLoad("andlabs")
testLoad("pixelgl") testLoad("pixelgl")
testLoad("gocui")
testLoad("andlabs")
testLoad("fyne") testLoad("fyne")
//testLoad("fail") //testLoad("fail")
} }