Simple Auto-Clicker CLI application for Windows, written in C++.
To use this program, you just have to download the pre-compiled exe file and run it on your PC.
The first CLI parameter is the interval (in milliseconds) between each click (default 1000).
clicker.exe 3000
Note: this procedure has been tested on a fresh Windows 10 installation.
If you want to compile the application yourself, you must have MinGW installed on your system. I suggest installing it via the Chocolatey package manager:
choco install -y mingw
Then compile the main.cpp
file with the G++ compiler:
g++ main.cpp -static -o clicker.exe
The result of the compilation is the clicker.exe
executable file.