@echo off
REM Build TaskbarHider with MinGW-w64. Adjust the g++ path if yours differs.
set GPP="C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin\g++.exe"
%GPP% -mwindows -municode -O2 -o TaskbarHider.exe TaskbarHider.cpp -lole32 -luuid
if %errorlevel%==0 (
  echo Build OK - TaskbarHider.exe created.
) else (
  echo Build FAILED.
)
pause
