Skip to content

dmotte/winautoclicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

winautoclicker

Simple Auto-Clicker CLI application for Windows, written in C++.

Usage

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

⚠️ Warning: do not set the interval parameter to extremely low values, as it can freeze your PC and you may not be able to close the application anymore.

Compiling

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.