21 lines
327 B
Markdown
21 lines
327 B
Markdown
|
# Timer
|
||
|
A simple timer.
|
||
|
|
||
|
## Usage
|
||
|
Left click the timer to pause/unpause it.
|
||
|
Right click the timer to reset it.
|
||
|
```
|
||
|
timer hours minutes seconds
|
||
|
```
|
||
|
|
||
|
## Building
|
||
|
To build the project use the following commands
|
||
|
```bash
|
||
|
git clone https://github.com/KalleStruik/Timer
|
||
|
cd Timer
|
||
|
mkdir cmake-build
|
||
|
cd cmake-build
|
||
|
cmake ../
|
||
|
make
|
||
|
```
|