Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 428 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 428 Bytes

perf-timer

C++17 implementation of a simple performance timer for functions.

Requirements

cmake 3.26.3 is used to compile the sources.

The cmake files compile with -std=c++17.

Run the Example

$ git clone https://github.com:massimo-marino/perf-timer.git
$ cd perf-timer/example
$ mkdir build
$ cd build
$ cmake ..
$ make
$ ./perf-timer-example

How to Use it

See the source code in the example.