Add files via upload

This commit is contained in:
Tomáš Dvořák
2025-05-21 11:51:25 +02:00
committed by GitHub
parent 68d2d55bf5
commit aca631b117
6 changed files with 153 additions and 491 deletions
+12
View File
@@ -0,0 +1,12 @@
@echo off
echo Building FolderOpener executable...
REM Create build directory if it doesn't exist
if not exist "build" mkdir build
REM Build for Windows as a GUI application (no console window)
go build -ldflags="-H windowsgui" -o build/FolderOpener.exe main.go
echo Done! Executable is in the build folder.
echo The application will run silently in the background.
pause