Systray update.

This commit is contained in:
Jesse Malotaux 2025-05-03 02:03:48 +02:00
parent 86f98cb8e5
commit 9c6b20ecc6
3 changed files with 8 additions and 5 deletions

View file

@ -5,7 +5,8 @@ BUILD_DIR="Macrame_$(date +'%m%d%H%M%S')"
# Build the Go application
cd be
go build -o Macrame.exe main.go
# go build -o Macrame.exe main.go // old command before systray update
go build -ldflags "-H=windowsgui" -o Macrame.exe main.go
go build -o Setup.exe setup/setup.go
# Build the frontend
@ -26,7 +27,7 @@ cp ../be/Macrame.exe $BUILD_DIR/be/Macrame.exe
cp ../be/Setup.exe $BUILD_DIR/be/Setup.exe
cp -r ../macros/* $BUILD_DIR/macros/
cp -r ../panels/* $BUILD_DIR/panels/
mv ../public/* $BUILD_DIR/public/
cp -r ../public/* $BUILD_DIR/public/
cp ../install.bat $BUILD_DIR/install.bat
cp ../Macrame.lnk $BUILD_DIR/Macrame.lnk